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/browser.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/browser.cc')
-rw-r--r-- | chrome/browser/ui/browser.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc index f001aa5..987af6c 100644 --- a/chrome/browser/ui/browser.cc +++ b/chrome/browser/ui/browser.cc @@ -226,6 +226,7 @@ using content::SiteInstance; using content::SSLStatus; using content::UserMetricsAction; using content::WebContents; +using extensions::Extension; /////////////////////////////////////////////////////////////////////////////// @@ -4112,10 +4113,11 @@ void Browser::Observe(int type, // Close any tabs from the unloaded extension, unless it's terminated, // in which case let the sad tabs remain. - if (content::Details<UnloadedExtensionInfo>(details)->reason != - extension_misc::UNLOAD_REASON_TERMINATE) { + if (content::Details<extensions::UnloadedExtensionInfo>( + details)->reason != extension_misc::UNLOAD_REASON_TERMINATE) { const Extension* extension = - content::Details<UnloadedExtensionInfo>(details)->extension; + content::Details<extensions::UnloadedExtensionInfo>( + details)->extension; for (int i = tab_strip_model_->count() - 1; i >= 0; --i) { WebContents* tc = tab_strip_model_->GetTabContentsAt(i)->web_contents(); |