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

Unified Diff: components/plugins/renderer/plugin_placeholder.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (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
Index: components/plugins/renderer/plugin_placeholder.h
diff --git a/components/plugins/renderer/plugin_placeholder.h b/components/plugins/renderer/plugin_placeholder.h
index 83a13e66054b8ce5b002fe65b5351a9413ecbb18..2fa6116a921c49a45eee816a4a1163780a01859e 100644
--- a/components/plugins/renderer/plugin_placeholder.h
+++ b/components/plugins/renderer/plugin_placeholder.h
@@ -37,8 +37,8 @@ class PluginPlaceholder : public content::RenderViewObserver,
// |render_view| and |frame| are weak pointers. If either one is going away,
// our |plugin_| will be destroyed as well and will notify us.
PluginPlaceholder(content::RenderView* render_view,
- WebKit::WebFrame* frame,
- const WebKit::WebPluginParams& params,
+ blink::WebFrame* frame,
+ const blink::WebPluginParams& params,
const std::string& html_data,
GURL placeholderDataUrl);
@@ -51,13 +51,13 @@ class PluginPlaceholder : public content::RenderViewObserver,
void SetPluginInfo(const content::WebPluginInfo& plugin_info);
const content::WebPluginInfo& GetPluginInfo() const;
void SetIdentifier(const std::string& identifier);
- WebKit::WebFrame* GetFrame();
- const WebKit::WebPluginParams& GetPluginParams() const;
+ blink::WebFrame* GetFrame();
+ const blink::WebPluginParams& GetPluginParams() const;
bool LoadingAllowed() const { return allow_loading_; }
// Replace this placeholder with a different plugin (which could be
// a placeholder again).
- void ReplacePlugin(WebKit::WebPlugin* new_plugin);
+ void ReplacePlugin(blink::WebPlugin* new_plugin);
// Hide this placeholder.
void HidePlugin();
@@ -66,12 +66,12 @@ class PluginPlaceholder : public content::RenderViewObserver,
void LoadPlugin();
// WebViewPlugin::Delegate method:
- virtual void BindWebFrame(WebKit::WebFrame* frame) OVERRIDE;
+ virtual void BindWebFrame(blink::WebFrame* frame) OVERRIDE;
private:
// WebViewPlugin::Delegate methods:
virtual void WillDestroyPlugin() OVERRIDE;
- virtual void ShowContextMenu(const WebKit::WebMouseEvent&) OVERRIDE;
+ virtual void ShowContextMenu(const blink::WebMouseEvent&) OVERRIDE;
// Javascript callbacks:
// All ignore arguments (which are, however, required by caller) and return
@@ -90,8 +90,8 @@ class PluginPlaceholder : public content::RenderViewObserver,
void UpdateMessage();
- WebKit::WebFrame* frame_;
- WebKit::WebPluginParams plugin_params_;
+ blink::WebFrame* frame_;
+ blink::WebPluginParams plugin_params_;
WebViewPlugin* plugin_;
content::WebPluginInfo plugin_info_;
« no previous file with comments | « components/plugins/renderer/mobile_youtube_plugin.cc ('k') | components/plugins/renderer/plugin_placeholder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698