| Index: chrome/browser/media/test_license_server.cc
|
| diff --git a/chrome/browser/media/test_license_server.cc b/chrome/browser/media/test_license_server.cc
|
| index 300274ebabb84c35592e3d9476bd74e7086a0a73..92f751f54568261705602a4cb04b38b7aca0d4ea 100644
|
| --- a/chrome/browser/media/test_license_server.cc
|
| +++ b/chrome/browser/media/test_license_server.cc
|
| @@ -26,21 +26,21 @@ bool TestLicenseServer::Start() {
|
| return true;
|
|
|
| if (!server_config_->IsPlatformSupported()) {
|
| - VLOG(0) << "License server is not supported on current platform.";
|
| + DVLOG(0) << "License server is not supported on current platform.";
|
| return false;
|
| }
|
|
|
| CommandLine command_line(CommandLine::NO_PROGRAM);
|
| if (!server_config_->GetServerCommandLine(&command_line)) {
|
| - VLOG(0) << "Could not get server command line to launch.";
|
| + DVLOG(0) << "Could not get server command line to launch.";
|
| return false;
|
| }
|
|
|
| - VLOG(0) << "Starting test license server " <<
|
| + DVLOG(0) << "Starting test license server " <<
|
| command_line.GetCommandLineString();
|
| if (!base::LaunchProcess(command_line, base::LaunchOptions(),
|
| &license_server_process_)) {
|
| - VLOG(0) << "Failed to start test license server!";
|
| + DVLOG(0) << "Failed to start test license server!";
|
| return false;
|
| }
|
| DCHECK_NE(license_server_process_, base::kNullProcessHandle);
|
| @@ -50,14 +50,14 @@ bool TestLicenseServer::Start() {
|
| bool TestLicenseServer::Stop() {
|
| if (license_server_process_ == base::kNullProcessHandle)
|
| return true;
|
| - VLOG(0) << "Killing license server.";
|
| + DVLOG(0) << "Killing license server.";
|
| bool kill_succeeded = base::KillProcess(license_server_process_, 1, true);
|
|
|
| if (kill_succeeded) {
|
| base::CloseProcessHandle(license_server_process_);
|
| license_server_process_ = base::kNullProcessHandle;
|
| } else {
|
| - VLOG(1) << "Kill failed?!";
|
| + DVLOG(1) << "Kill failed?!";
|
| }
|
| return kill_succeeded;
|
| }
|
|
|