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

Unified Diff: chrome/browser/extensions/platform_app_browsertest.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/extensions/platform_app_browsertest.cc
diff --git a/chrome/browser/extensions/platform_app_browsertest.cc b/chrome/browser/extensions/platform_app_browsertest.cc
index c3bcdbd3a7b796cf5539bd38de7b133ccabb2843..65441b602bed50f81f989267aa1a453ba7c8fa6e 100644
--- a/chrome/browser/extensions/platform_app_browsertest.cc
+++ b/chrome/browser/extensions/platform_app_browsertest.cc
@@ -17,7 +17,8 @@
#include "content/public/browser/render_process_host.h"
using content::WebContents;
-using extensions::Extension;
+
+namespace extensions {
namespace {
// Non-abstract RenderViewContextMenu class.
@@ -222,7 +223,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, LaunchWithRelativeFile) {
// Load the extension
ResultCatcher catcher;
- const extensions::Extension* extension = LoadExtension(
+ const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("platform_apps/launch_file"));
ASSERT_TRUE(extension);
@@ -313,3 +314,5 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, OpenLink) {
observer.Wait();
ASSERT_EQ(2, browser()->tab_count());
}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698