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

Unified Diff: remoting/codec/video_encoder_vpx.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 | « ppapi/shared_impl/ppapi_permissions.cc ('k') | remoting/host/daemon_process_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_vpx.cc
diff --git a/remoting/codec/video_encoder_vpx.cc b/remoting/codec/video_encoder_vpx.cc
index aad762d04f74907ea3293356593a1700d7e8712b..d92d5b336e1fdbcdb2b6b341ef9a9b7158e64543 100644
--- a/remoting/codec/video_encoder_vpx.cc
+++ b/remoting/codec/video_encoder_vpx.cc
@@ -334,7 +334,8 @@ VideoEncoderVpx::VideoEncoderVpx(bool use_vp9)
active_map_height_(0) {
if (use_vp9_) {
// Use I444 colour space, by default, if specified on the command-line.
- if (CommandLine::ForCurrentProcess()->HasSwitch(kEnableI444SwitchName)) {
+ if (base::CommandLine::ForCurrentProcess()->HasSwitch(
+ kEnableI444SwitchName)) {
SetLosslessColor(true);
}
}
« no previous file with comments | « ppapi/shared_impl/ppapi_permissions.cc ('k') | remoting/host/daemon_process_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698