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

Unified Diff: skia/ext/vector_canvas_unittest.cc

Issue 819203002: 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
« no previous file with comments | « rlz/test/rlz_unittest_main.cc ('k') | sync/tools/sync_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/vector_canvas_unittest.cc
diff --git a/skia/ext/vector_canvas_unittest.cc b/skia/ext/vector_canvas_unittest.cc
index 8785cb4af45ae731a215746e6f9d73598b6cc34a..a52c7b6a53557212316a2a92fb8c0b7683caf6bb 100644
--- a/skia/ext/vector_canvas_unittest.cc
+++ b/skia/ext/vector_canvas_unittest.cc
@@ -418,8 +418,9 @@ class VectorCanvasTest : public ImageTest {
// Returns COMPARE, which is the default. If kGenerateSwitch command
// line argument is used to start this process, GENERATE is returned instead.
static ProcessAction CurrentMode() {
- return CommandLine::ForCurrentProcess()->HasSwitch(kGenerateSwitch) ?
- GENERATE : COMPARE;
+ return base::CommandLine::ForCurrentProcess()->HasSwitch(kGenerateSwitch)
+ ? GENERATE
+ : COMPARE;
}
// Length in x and y of the square canvas.
« no previous file with comments | « rlz/test/rlz_unittest_main.cc ('k') | sync/tools/sync_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698