| Index: cloud_print/service/win/service_utils.cc
|
| diff --git a/cloud_print/service/win/service_utils.cc b/cloud_print/service/win/service_utils.cc
|
| index b71bca2291b08f829ab5aaead140a75c7e784780..6bced8098dd4ffb2c7530ae48847eaeaf69bdad9 100644
|
| --- a/cloud_print/service/win/service_utils.cc
|
| +++ b/cloud_print/service/win/service_utils.cc
|
| @@ -48,7 +48,7 @@ base::string16 GetCurrentUserName() {
|
| return result;
|
| }
|
|
|
| -void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination) {
|
| +void CopyChromeSwitchesFromCurrentProcess(base::CommandLine* destination) {
|
| static const char* const kSwitchesToCopy[] = {
|
| switches::kCloudPrintURL,
|
| switches::kCloudPrintXmppEndpoint,
|
| @@ -58,7 +58,7 @@ void CopyChromeSwitchesFromCurrentProcess(CommandLine* destination) {
|
| switches::kLsoUrl,
|
| switches::kV,
|
| };
|
| - destination->CopySwitchesFrom(*CommandLine::ForCurrentProcess(),
|
| + destination->CopySwitchesFrom(*base::CommandLine::ForCurrentProcess(),
|
| kSwitchesToCopy,
|
| arraysize(kSwitchesToCopy));
|
| }
|
|
|