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

Unified Diff: content/common/input/scoped_web_input_event.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/common/input/input_param_traits_unittest.cc ('k') | content/common/input/scoped_web_input_event.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/input/scoped_web_input_event.h
diff --git a/content/common/input/scoped_web_input_event.h b/content/common/input/scoped_web_input_event.h
index c11356f63704eddaed7235eaaeb74bf1df0a071a..e25cc0c8959f6c06cbb209c483a256ff27babc35 100644
--- a/content/common/input/scoped_web_input_event.h
+++ b/content/common/input/scoped_web_input_event.h
@@ -9,18 +9,18 @@
#include "base/memory/scoped_ptr.h"
#include "content/common/content_export.h"
-namespace WebKit {
+namespace blink {
class WebInputEvent;
}
namespace content {
-// WebKit::WebInputEvent does not provide a virtual destructor.
+// blink::WebInputEvent does not provide a virtual destructor.
struct CONTENT_EXPORT WebInputEventDeleter {
WebInputEventDeleter();
- void operator()(WebKit::WebInputEvent* web_event) const;
+ void operator()(blink::WebInputEvent* web_event) const;
};
-typedef scoped_ptr<WebKit::WebInputEvent,
+typedef scoped_ptr<blink::WebInputEvent,
WebInputEventDeleter> ScopedWebInputEvent;
} // namespace content
« no previous file with comments | « content/common/input/input_param_traits_unittest.cc ('k') | content/common/input/scoped_web_input_event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698