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

Unified Diff: content/public/browser/render_view_host.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/public/browser/navigation_controller.h ('k') | content/public/browser/render_widget_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/render_view_host.h
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h
index 12b162b95b12d5c3fafb18d3799813c83f4abeaf..2eed2876b745c33eaccab89a672c8b57cfd1345b 100644
--- a/content/public/browser/render_view_host.h
+++ b/content/public/browser/render_view_host.h
@@ -35,7 +35,7 @@ namespace ui {
struct SelectedFileInfo;
}
-namespace WebKit {
+namespace blink {
struct WebFindOptions;
struct WebMediaPlayerAction;
struct WebPluginAction;
@@ -120,7 +120,7 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
// either in a drop or by being cancelled.
virtual void DragSourceEndedAt(
int client_x, int client_y, int screen_x, int screen_y,
- WebKit::WebDragOperation operation) = 0;
+ blink::WebDragOperation operation) = 0;
// Notifies the renderer that a drag and drop operation is in progress, with
// droppable items positioned over the renderer's view.
@@ -136,12 +136,12 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
const DropData& drop_data,
const gfx::Point& client_pt,
const gfx::Point& screen_pt,
- WebKit::WebDragOperationsMask operations_allowed,
+ blink::WebDragOperationsMask operations_allowed,
int key_modifiers) = 0;
virtual void DragTargetDragOver(
const gfx::Point& client_pt,
const gfx::Point& screen_pt,
- WebKit::WebDragOperationsMask operations_allowed,
+ blink::WebDragOperationsMask operations_allowed,
int key_modifiers) = 0;
virtual void DragTargetDragLeave() = 0;
virtual void DragTargetDrop(const gfx::Point& client_pt,
@@ -167,7 +167,7 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
// located at the given point.
virtual void ExecuteMediaPlayerActionAtLocation(
const gfx::Point& location,
- const WebKit::WebMediaPlayerAction& action) = 0;
+ const blink::WebMediaPlayerAction& action) = 0;
// Runs some javascript within the context of a frame in the page.
virtual void ExecuteJavascriptInWebFrame(const string16& frame_xpath,
@@ -184,14 +184,14 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
// Tells the renderer to perform the given action on the plugin located at
// the given point.
virtual void ExecutePluginActionAtLocation(
- const gfx::Point& location, const WebKit::WebPluginAction& action) = 0;
+ const gfx::Point& location, const blink::WebPluginAction& action) = 0;
// Asks the renderer to exit fullscreen
virtual void ExitFullscreen() = 0;
// Finds text on a page.
virtual void Find(int request_id, const string16& search_text,
- const WebKit::WebFindOptions& options) = 0;
+ const blink::WebFindOptions& options) = 0;
// Notifies the renderer that the user has closed the FindInPage window
// (and what action to take regarding the selection).
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/public/browser/render_widget_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698