Index: chrome/browser/ui/views/ash/panel_view_aura.cc |
diff --git a/chrome/browser/ui/views/ash/panel_view_aura.cc b/chrome/browser/ui/views/ash/panel_view_aura.cc |
index bc5346dd5858037fae9e98947cf2d5a3cbccdb85..cda8cabf82b67dd9e5c88e08dd5b82c1b9076e70 100644 |
--- a/chrome/browser/ui/views/ash/panel_view_aura.cc |
+++ b/chrome/browser/ui/views/ash/panel_view_aura.cc |
@@ -189,7 +189,8 @@ class PanelExtensionWindowController : public extensions::WindowController { |
virtual int GetWindowId() const OVERRIDE; |
virtual std::string GetWindowTypeText() const OVERRIDE; |
virtual base::DictionaryValue* CreateWindowValue() const OVERRIDE; |
- virtual base::DictionaryValue* CreateWindowValueWithTabs() const OVERRIDE; |
+ virtual base::DictionaryValue* CreateWindowValueWithTabs( |
+ const extensions::Extension* extension) const OVERRIDE; |
virtual bool CanClose(Reason* reason) const OVERRIDE; |
virtual void SetFullscreenMode(bool is_fullscreen, |
const GURL& extension_url) const OVERRIDE; |
@@ -231,7 +232,8 @@ PanelExtensionWindowController::CreateWindowValue() const { |
} |
base::DictionaryValue* |
-PanelExtensionWindowController::CreateWindowValueWithTabs() const { |
+PanelExtensionWindowController::CreateWindowValueWithTabs( |
+ const extensions::Extension* extension) const { |
DictionaryValue* result = CreateWindowValue(); |
// TODO(stevenjb): Implement tab interface for Aura panels. |