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

Unified Diff: content/browser/frame_host/render_frame_host_manager_unittest.cc

Issue 803813003: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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: content/browser/frame_host/render_frame_host_manager_unittest.cc
diff --git a/content/browser/frame_host/render_frame_host_manager_unittest.cc b/content/browser/frame_host/render_frame_host_manager_unittest.cc
index bbe0aec7afc58e0a33cb6177bb8535694dd486a7..801b8e99f469bb3e91a81f5be38a933922971ca4 100644
--- a/content/browser/frame_host/render_frame_host_manager_unittest.cc
+++ b/content/browser/frame_host/render_frame_host_manager_unittest.cc
@@ -1830,7 +1830,8 @@ TEST_F(RenderFrameHostManagerTest,
// Test that a pending RenderFrameHost in a non-root frame tree node is properly
// deleted when the node is detached. Motivated by http://crbug.com/441357
TEST_F(RenderFrameHostManagerTest, DetachPendingChild) {
- CommandLine::ForCurrentProcess()->AppendSwitch(switches::kSitePerProcess);
+ base::CommandLine::ForCurrentProcess()->AppendSwitch(
+ switches::kSitePerProcess);
const GURL kUrl1("http://www.google.com/");
const GURL kUrl2("http://webkit.org/");

Powered by Google App Engine
This is Rietveld 408576698