Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(461)

Unified Diff: chrome/browser/ui/extensions/shell_window.cc

Issue 10824204: Move small c/b/extensions classes into extensions namespace no.2 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/extensions/shell_window.cc
diff --git a/chrome/browser/ui/extensions/shell_window.cc b/chrome/browser/ui/extensions/shell_window.cc
index 45e04b6be3ff96f3f46a6066f9537d6a654a88ee..afd9618803c4513bc6c442bc0a15934bbff6efeb 100644
--- a/chrome/browser/ui/extensions/shell_window.cc
+++ b/chrome/browser/ui/extensions/shell_window.cc
@@ -72,7 +72,7 @@ ShellWindow* ShellWindow::Create(Profile* profile,
// This object will delete itself when the window is closed.
ShellWindow* window =
ShellWindow::CreateImpl(profile, extension, url, params);
- ShellWindowRegistry::Get(profile)->AddShellWindow(window);
+ extensions::ShellWindowRegistry::Get(profile)->AddShellWindow(window);
return window;
}
@@ -235,7 +235,7 @@ void ShellWindow::AddNewContents(WebContents* source,
}
void ShellWindow::OnNativeClose() {
- ShellWindowRegistry::Get(profile_)->RemoveShellWindow(this);
+ extensions::ShellWindowRegistry::Get(profile_)->RemoveShellWindow(this);
delete this;
}

Powered by Google App Engine
This is Rietveld 408576698