Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: webkit/glue/dragclient_impl.h

Issue 339001: Minor cleanup in glue to remove some remaining base dependencies.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/glue/webframe_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/dragclient_impl.h
===================================================================
--- webkit/glue/dragclient_impl.h (revision 30037)
+++ webkit/glue/dragclient_impl.h (working copy)
@@ -5,13 +5,8 @@
#ifndef WEBKIT_GLUE_DRAGCLIENT_IMPL_H__
#define WEBKIT_GLUE_DRAGCLIENT_IMPL_H__
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-
-MSVC_PUSH_WARNING_LEVEL(0);
#include "DragClient.h"
#include "DragActions.h"
-MSVC_POP_WARNING();
namespace WebCore {
class ClipBoard;
@@ -23,7 +18,7 @@
class WebViewImpl;
class DragClientImpl : public WebCore::DragClient {
-public:
+ public:
DragClientImpl(WebViewImpl* webview) : webview_(webview) {}
virtual ~DragClientImpl() {}
@@ -47,8 +42,7 @@
virtual void dragControllerDestroyed();
-private:
- DISALLOW_EVIL_CONSTRUCTORS(DragClientImpl);
+ private:
WebViewImpl* webview_;
};
« no previous file with comments | « no previous file | webkit/glue/webframe_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698