diff options
author | pgal.u-szeged <pgal.u-szeged@partner.samsung.com> | 2014-11-25 04:55:02 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-25 12:55:16 +0000 |
commit | 421dddbfb62bc44bcab42c454ed913b337f849b9 (patch) | |
tree | 77e46104e4cfa2e9cb1307a9814dfe2fc659c4db /base/tracked_objects.cc | |
parent | 36d9911c4456b80228f69ae5fa36d904d2b2d8ae (diff) | |
download | chromium_src-421dddbfb62bc44bcab42c454ed913b337f849b9.zip chromium_src-421dddbfb62bc44bcab42c454ed913b337f849b9.tar.gz chromium_src-421dddbfb62bc44bcab42c454ed913b337f849b9.tar.bz2 |
Prefix CommandLine usege with base namespace (Part 1: base/)
Prefix all CommandLine usage in the base/ directory with the
base:: namespace.
BUG=422426
Review URL: https://codereview.chromium.org/645133002
Cr-Commit-Position: refs/heads/master@{#305626}
Diffstat (limited to 'base/tracked_objects.cc')
-rw-r--r-- | base/tracked_objects.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/tracked_objects.cc b/base/tracked_objects.cc index 5e30762..4320509 100644 --- a/base/tracked_objects.cc +++ b/base/tracked_objects.cc @@ -76,10 +76,10 @@ inline bool IsProfilerTimingEnabled() { base::subtle::Atomic32 current_timing_enabled = base::subtle::NoBarrier_Load(&g_profiler_timing_enabled); if (current_timing_enabled == UNDEFINED_TIMING) { - if (!CommandLine::InitializedForCurrentProcess()) + if (!base::CommandLine::InitializedForCurrentProcess()) return true; current_timing_enabled = - (CommandLine::ForCurrentProcess()->GetSwitchValueASCII( + (base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( switches::kProfilerTiming) == switches::kProfilerTimingDisabledValue) ? DISABLED_TIMING |