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

Unified Diff: chrome/browser/ui/panels/panel_browsertest.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 2 Created 8 years, 7 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/panels/panel_browsertest.cc
diff --git a/chrome/browser/ui/panels/panel_browsertest.cc b/chrome/browser/ui/panels/panel_browsertest.cc
index b9db08d2b3c69436804156a0fbdc62461b3d3a49..b26b5bec0d0c25732490dbb8787367ca526c9c3a 100644
--- a/chrome/browser/ui/panels/panel_browsertest.cc
+++ b/chrome/browser/ui/panels/panel_browsertest.cc
@@ -49,6 +49,7 @@ using content::BrowserThread;
using content::DownloadItem;
using content::DownloadManager;
using content::WebContents;
+using extensions::Extension;
class PanelBrowserTest : public BasePanelBrowserTest {
public:
@@ -1321,12 +1322,12 @@ IN_PROC_BROWSER_TEST_F(PanelBrowserTest,
content::Source<Browser>(panel1->browser()));
// Send unload notification on the first extension.
- UnloadedExtensionInfo details(extension,
+ extensions::UnloadedExtensionInfo details(extension,
extension_misc::UNLOAD_REASON_UNINSTALL);
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_EXTENSION_UNLOADED,
content::Source<Profile>(browser()->profile()),
- content::Details<UnloadedExtensionInfo>(&details));
+ content::Details<extensions::UnloadedExtensionInfo>(&details));
// Wait for the panels opened by the first extension to close.
signal.Wait();

Powered by Google App Engine
This is Rietveld 408576698