diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:50:46 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:50:46 +0000 |
commit | 180ef24f1fd1b1ff309fc35f250336890f702f28 (patch) | |
tree | de5918896ed9780e5cf6098be329060a58f3702e /content/renderer/pepper/event_conversion.h | |
parent | 8d7dd7ade794c71be49c7a954c4d4b4ca1ab6c01 (diff) | |
download | chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.zip chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.gz chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.bz2 |
Rename WebKit namespace to blink (part 3)
This CL updates all references to the WebKit namespace in content.
TBR=darin@chromium.org
BUG=295096
Review URL: https://codereview.chromium.org/63253002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/pepper/event_conversion.h')
-rw-r--r-- | content/renderer/pepper/event_conversion.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/renderer/pepper/event_conversion.h b/content/renderer/pepper/event_conversion.h index edaa730..81aa6b3 100644 --- a/content/renderer/pepper/event_conversion.h +++ b/content/renderer/pepper/event_conversion.h @@ -17,7 +17,7 @@ namespace ppapi { struct InputEventData; } -namespace WebKit { +namespace blink { class WebGamepads; class WebInputEvent; } @@ -27,24 +27,24 @@ namespace content { // Converts the given WebKit event to one or possibly multiple PP_InputEvents. // The generated events will be filled into the given vector. On failure, no // events will ge generated and the vector will be empty. -void CreateInputEventData(const WebKit::WebInputEvent& event, +void CreateInputEventData(const blink::WebInputEvent& event, std::vector<ppapi::InputEventData >* pp_events); // Creates a WebInputEvent from the given PP_InputEvent. If it fails, returns // NULL. The caller owns the created object on success. -WebKit::WebInputEvent* CreateWebInputEvent(const ppapi::InputEventData& event); +blink::WebInputEvent* CreateWebInputEvent(const ppapi::InputEventData& event); // Creates an array of WebInputEvents to make the given event look like a user // input event on all platforms. |plugin_x| and |plugin_y| should be the // coordinates of a point within the plugin's area on the page. -std::vector<linked_ptr<WebKit::WebInputEvent> > CreateSimulatedWebInputEvents( +std::vector<linked_ptr<blink::WebInputEvent> > CreateSimulatedWebInputEvents( const ppapi::InputEventData& event, int plugin_x, int plugin_y); // Returns the PPAPI event class for the given WebKit event type. The given // type should not be "Undefined" since there's no corresponding PPAPI class. -PP_InputEvent_Class ClassifyInputEvent(WebKit::WebInputEvent::Type type); +PP_InputEvent_Class ClassifyInputEvent(blink::WebInputEvent::Type type); } // namespace content |