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:
Marshall Greenblatt
2013-07-24 20:15:18 +00:00
parent 6a7353be3e
commit a2a3513620
69 changed files with 510 additions and 444 deletions

View File

@ -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);
};