| Index: components/nacl/renderer/ppb_nacl_private_impl.cc
|
| diff --git a/components/nacl/renderer/ppb_nacl_private_impl.cc b/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| index d923f2aa28580b88da53bf5d40817764acedc53f..88a5cb33371158415b9b344ae157a313e7d5f943 100644
|
| --- a/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| +++ b/components/nacl/renderer/ppb_nacl_private_impl.cc
|
| @@ -507,7 +507,7 @@ int UrandomFD(void) {
|
| }
|
|
|
| PP_Bool Are3DInterfacesDisabled() {
|
| - return PP_FromBool(CommandLine::ForCurrentProcess()->HasSwitch(
|
| + return PP_FromBool(base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDisable3DAPIs));
|
| }
|
|
|
| @@ -766,7 +766,8 @@ void InstanceDestroyed(PP_Instance instance) {
|
| }
|
|
|
| PP_Bool NaClDebugEnabledForURL(const char* alleged_nmf_url) {
|
| - if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnableNaClDebug))
|
| + if (!base::CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kEnableNaClDebug))
|
| return PP_FALSE;
|
| IPC::Sender* sender = content::RenderThread::Get();
|
| DCHECK(sender);
|
|
|