| Index: chrome/browser/extensions/browser_extension_window_controller.cc
|
| diff --git a/chrome/browser/extensions/browser_extension_window_controller.cc b/chrome/browser/extensions/browser_extension_window_controller.cc
|
| index 66aca07664b3d3efb64a6a9fd77511c93690a84f..32f2900388eacd23799fee26b652fb8c7023bd68 100644
|
| --- a/chrome/browser/extensions/browser_extension_window_controller.cc
|
| +++ b/chrome/browser/extensions/browser_extension_window_controller.cc
|
| @@ -15,7 +15,7 @@
|
|
|
| BrowserExtensionWindowController::BrowserExtensionWindowController(
|
| Browser* browser)
|
| - : ExtensionWindowController(browser->window(), browser->profile()),
|
| + : extensions::WindowController(browser->window(), browser->profile()),
|
| browser_(browser) {
|
| }
|
|
|
| @@ -37,7 +37,7 @@ std::string BrowserExtensionWindowController::GetWindowTypeText() const {
|
|
|
| base::DictionaryValue*
|
| BrowserExtensionWindowController::CreateWindowValue() const {
|
| - DictionaryValue* result = ExtensionWindowController::CreateWindowValue();
|
| + DictionaryValue* result = extensions::WindowController::CreateWindowValue();
|
| return result;
|
| }
|
|
|
| @@ -54,7 +54,7 @@ bool BrowserExtensionWindowController::CanClose(Reason* reason) const {
|
| // Don't let an extension remove the window if the user is dragging tabs
|
| // in that window.
|
| if (!chrome::IsTabStripEditable(browser_)) {
|
| - *reason = ExtensionWindowController::REASON_NOT_EDITABLE;
|
| + *reason = extensions::WindowController::REASON_NOT_EDITABLE;
|
| return false;
|
| }
|
| return true;
|
|
|