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 90cc69202d249ceb196506370432dabf3bf3f0ed..2790b74d1d823f51a22b29135e1fec4eacf0a4e2 100644 |
--- a/chrome/browser/ui/extensions/shell_window.h |
+++ b/chrome/browser/ui/extensions/shell_window.h |
@@ -26,6 +26,11 @@ class WebContents; |
class ShellWindow : public content::NotificationObserver, |
public BaseWindow { |
public: |
+ // TODO(mihaip): Switch from hardcoded defaults to passing in the window |
+ // creation parameters to ShellWindow::Create. |
+ static const int kDefaultWidth = 512; |
+ static const int kDefaultHeight = 384; |
+ |
content::WebContents* web_contents() const { return host_->host_contents(); } |
const SessionID& session_id() const { return session_id_; } |
const ExtensionWindowController* extension_window_controller() const { |