mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 213078.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1338 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -9,12 +9,12 @@
|
||||
#include <vector>
|
||||
|
||||
#include "include/cef_drag_data.h"
|
||||
#include "webkit/common/webdropdata.h"
|
||||
#include "content/public/common/drop_data.h"
|
||||
|
||||
// Implementation of CefDragData.
|
||||
class CefDragDataImpl : public CefDragData {
|
||||
public:
|
||||
explicit CefDragDataImpl(const WebDropData& data);
|
||||
explicit CefDragDataImpl(const content::DropData& data);
|
||||
|
||||
virtual bool IsLink();
|
||||
virtual bool IsFragment();
|
||||
@ -29,7 +29,7 @@ class CefDragDataImpl : public CefDragData {
|
||||
virtual bool GetFileNames(std::vector<CefString>& names);
|
||||
|
||||
protected:
|
||||
WebDropData data_;
|
||||
content::DropData data_;
|
||||
|
||||
IMPLEMENT_REFCOUNTING(CefDragDataImpl);
|
||||
};
|
||||
|
Reference in New Issue
Block a user