diff options
author | avi <avi@chromium.org> | 2014-12-22 16:27:27 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-23 00:28:12 +0000 |
commit | 429bbdd261e1530b951ba528081343d2c9947408 (patch) | |
tree | a5c0f82288df21d027b3ea2a3e96acbf99cf3340 /media/base/pipeline.cc | |
parent | 3a928a843fe9b2a13885d1f488d95465b5e5d0f1 (diff) | |
download | chromium_src-429bbdd261e1530b951ba528081343d2c9947408.zip chromium_src-429bbdd261e1530b951ba528081343d2c9947408.tar.gz chromium_src-429bbdd261e1530b951ba528081343d2c9947408.tar.bz2 |
Make callers of CommandLine use it via the base:: namespace.
Covers jingle/, media/, ppapi/, remoting/, rlz/, skia/, and sync/.
BUG=422426
TEST=none
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/819203002
Cr-Commit-Position: refs/heads/master@{#309502}
Diffstat (limited to 'media/base/pipeline.cc')
-rw-r--r-- | media/base/pipeline.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/pipeline.cc b/media/base/pipeline.cc index d6ed651..3d210d4 100644 --- a/media/base/pipeline.cc +++ b/media/base/pipeline.cc @@ -685,7 +685,7 @@ void Pipeline::RunEndedCallbackIfNeeded() { scoped_ptr<TextRenderer> Pipeline::CreateTextRenderer() { DCHECK(task_runner_->BelongsToCurrentThread()); - const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); + const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); if (!cmd_line->HasSwitch(switches::kEnableInbandTextTracks)) return scoped_ptr<media::TextRenderer>(); |