| Index: chrome/browser/ui/extensions/shell_window.h
|
| diff --git a/chrome/browser/ui/extensions/shell_window.h b/chrome/browser/ui/extensions/shell_window.h
|
| index 8cd458f1cee915154d97389602b5af02dae32036..546c3738bba3a6371f357142d1183185cf152376 100644
|
| --- a/chrome/browser/ui/extensions/shell_window.h
|
| +++ b/chrome/browser/ui/extensions/shell_window.h
|
| @@ -104,8 +104,9 @@ class ShellWindow : public content::NotificationObserver,
|
| // invoke this method instead of using "delete this".
|
| void OnNativeClose();
|
|
|
| - // Save the window position in the prefs.
|
| - virtual void SaveWindowPosition();
|
| + // Should be called by native implementations when the window size/position
|
| + // has changed.
|
| + void SaveWindowPosition();
|
|
|
| protected:
|
| ShellWindow(Profile* profile,
|
| @@ -175,6 +176,9 @@ class ShellWindow : public content::NotificationObserver,
|
| void AddMessageToDevToolsConsole(content::ConsoleMessageLevel level,
|
| const std::string& message);
|
|
|
| + // Sends an update message with the current bounds to the renderer.
|
| + void SendBoundsUpdate();
|
| +
|
| virtual void UpdateDraggableRegions(
|
| const std::vector<extensions::DraggableRegion>& regions);
|
|
|
|
|