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

Unified Diff: content/child/npapi/plugin_web_event_converter_mac.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/child/npapi/plugin_url_fetcher.cc ('k') | content/child/npapi/plugin_web_event_converter_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/npapi/plugin_web_event_converter_mac.h
diff --git a/content/child/npapi/plugin_web_event_converter_mac.h b/content/child/npapi/plugin_web_event_converter_mac.h
index 3c943f688ee3b223de1c804e6137b697bae10eb0..a1fc326ef0cd2a5b3e6ba6929895dd9ec38b8d42 100644
--- a/content/child/npapi/plugin_web_event_converter_mac.h
+++ b/content/child/npapi/plugin_web_event_converter_mac.h
@@ -7,7 +7,7 @@
#include "third_party/npapi/bindings/npapi.h"
-namespace WebKit {
+namespace blink {
class WebInputEvent;
class WebKeyboardEvent;
class WebMouseEvent;
@@ -25,7 +25,7 @@ class PluginWebEventConverter {
// Initializes a converter for the given web event. Returns false if the event
// could not be converted.
- bool InitWithEvent(const WebKit::WebInputEvent& web_event);
+ bool InitWithEvent(const blink::WebInputEvent& web_event);
// Returns a pointer to a plugin event--suitable for passing to
// NPP_HandleEvent--corresponding to the the web event this converter was
@@ -37,12 +37,12 @@ class PluginWebEventConverter {
// Stores a converted plugin representation of the given web event, suitable
// for returning from plugin_event.
// Returns true if the event was successfully converted.
- bool ConvertKeyboardEvent(const WebKit::WebKeyboardEvent& web_event);
- bool ConvertMouseEvent(const WebKit::WebMouseEvent& web_event);
- bool ConvertMouseWheelEvent(const WebKit::WebMouseWheelEvent& web_event);
+ bool ConvertKeyboardEvent(const blink::WebKeyboardEvent& web_event);
+ bool ConvertMouseEvent(const blink::WebMouseEvent& web_event);
+ bool ConvertMouseWheelEvent(const blink::WebMouseWheelEvent& web_event);
// Returns the Cocoa translation of web_event's modifiers.
- static NSUInteger CocoaModifiers(const WebKit::WebInputEvent& web_event);
+ static NSUInteger CocoaModifiers(const blink::WebInputEvent& web_event);
NPCocoaEvent cocoa_event_;
« no previous file with comments | « content/child/npapi/plugin_url_fetcher.cc ('k') | content/child/npapi/plugin_web_event_converter_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698