| 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.
|
|
|