| Index: chrome/browser/devtools/devtools_ui_bindings.h
|
| diff --git a/chrome/browser/devtools/devtools_ui_bindings.h b/chrome/browser/devtools/devtools_ui_bindings.h
|
| index f6f2438c146d8a6e3eca1c40f4782b215db93d49..ddf583665a593f68b55ff7e9970c62f910999b49 100644
|
| --- a/chrome/browser/devtools/devtools_ui_bindings.h
|
| +++ b/chrome/browser/devtools/devtools_ui_bindings.h
|
| @@ -47,8 +47,7 @@ class DevToolsUIBindings : public content::NotificationObserver,
|
| virtual ~Delegate() {}
|
| virtual void ActivateWindow() = 0;
|
| virtual void CloseWindow() = 0;
|
| - virtual void SetContentsInsets(
|
| - int left, int top, int right, int bottom) = 0;
|
| + virtual void SetInspectedPageBounds(const gfx::Rect& rect) = 0;
|
| virtual void SetContentsResizingStrategy(
|
| const gfx::Insets& insets, const gfx::Size& min_size) = 0;
|
| virtual void InspectElementCompleted() = 0;
|
| @@ -91,8 +90,7 @@ class DevToolsUIBindings : public content::NotificationObserver,
|
| // DevToolsEmbedderMessageDispatcher::Delegate overrides:
|
| virtual void ActivateWindow() OVERRIDE;
|
| virtual void CloseWindow() OVERRIDE;
|
| - virtual void SetContentsInsets(
|
| - int left, int top, int right, int bottom) OVERRIDE;
|
| + virtual void SetInspectedPageBounds(const gfx::Rect& rect) OVERRIDE;
|
| virtual void SetContentsResizingStrategy(
|
| const gfx::Insets& insets, const gfx::Size& min_size) OVERRIDE;
|
| virtual void InspectElementCompleted() OVERRIDE;
|
|
|