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

Unified Diff: content/renderer/browser_plugin/browser_plugin.h

Issue 12189018: <webview>: Implement WebRequest API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Diff from latest patch Created 7 years, 10 months 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: content/renderer/browser_plugin/browser_plugin.h
diff --git a/content/renderer/browser_plugin/browser_plugin.h b/content/renderer/browser_plugin/browser_plugin.h
index 17dcdcf5b3b340dfa0b6c0d243371883e2b3d219..2c723825f763b9538a77b62318ec24db57718935 100644
--- a/content/renderer/browser_plugin/browser_plugin.h
+++ b/content/renderer/browser_plugin/browser_plugin.h
@@ -35,6 +35,7 @@ class CONTENT_EXPORT BrowserPlugin :
public:
RenderViewImpl* render_view() const { return render_view_.get(); }
int render_view_routing_id() const { return render_view_routing_id_; }
+ int instance_id() const { return instance_id_; }
bool OnMessageReceived(const IPC::Message& msg);
@@ -189,7 +190,6 @@ class CONTENT_EXPORT BrowserPlugin :
int width() const { return plugin_rect_.width(); }
int height() const { return plugin_rect_.height(); }
- int instance_id() const { return instance_id_; }
// Gets the Max Height value used for auto size.
int GetAdjustedMaxHeight() const;
// Gets the Max Width value used for auto size.

Powered by Google App Engine
This is Rietveld 408576698