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

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: Latest master for cq + nitfix 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 ec323fca5e37c9c33b07fab2da1ae7a108567543..5e3f1d907cd6a54c848cb9a9cc2ccc325f52598b 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;
}
« no previous file with comments | « chrome/browser/ui/extensions/shell_window.h ('k') | chrome/browser/ui/views/select_file_dialog_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698