diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-21 03:02:34 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-21 03:02:34 +0000 |
commit | 1c321ee57a522e891d91a41a09bd900f0afd6f0d (patch) | |
tree | bb6e35526d52b50d8e37216e8605c7b4aa08c86a /chrome/browser/ui/extensions/shell_window.cc | |
parent | e2a374f50043586ff684e0720bbbd99b9aa15c07 (diff) | |
download | chromium_src-1c321ee57a522e891d91a41a09bd900f0afd6f0d.zip chromium_src-1c321ee57a522e891d91a41a09bd900f0afd6f0d.tar.gz chromium_src-1c321ee57a522e891d91a41a09bd900f0afd6f0d.tar.bz2 |
Move Extension into extensions namespace
BUG=117262
TBR=aa@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10375021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138074 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/extensions/shell_window.cc')
-rw-r--r-- | chrome/browser/ui/extensions/shell_window.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/ui/extensions/shell_window.cc b/chrome/browser/ui/extensions/shell_window.cc index ff7881d..701e97c 100644 --- a/chrome/browser/ui/extensions/shell_window.cc +++ b/chrome/browser/ui/extensions/shell_window.cc @@ -84,14 +84,14 @@ void ShellWindowController::SetFullscreenMode(bool is_fullscreen, } // namespace internal ShellWindow* ShellWindow::Create(Profile* profile, - const Extension* extension, + const extensions::Extension* extension, const GURL& url) { // This object will delete itself when the window is closed. return ShellWindow::CreateImpl(profile, extension, url); } ShellWindow::ShellWindow(Profile* profile, - const Extension* extension, + const extensions::Extension* extension, const GURL& url) : profile_(profile), extension_(extension), @@ -180,8 +180,9 @@ void ShellWindow::Observe(int type, const content::NotificationDetails& details) { switch (type) { case chrome::NOTIFICATION_EXTENSION_UNLOADED: { - const Extension* unloaded_extension = - content::Details<UnloadedExtensionInfo>(details)->extension; + const extensions::Extension* unloaded_extension = + content::Details<extensions::UnloadedExtensionInfo>( + details)->extension; if (extension_ == unloaded_extension) Close(); break; |