| Index: components/policy/core/common/cloud/device_management_service.cc
|
| diff --git a/components/policy/core/common/cloud/device_management_service.cc b/components/policy/core/common/cloud/device_management_service.cc
|
| index 5c9600561aa562a3228f2888dc588ab7514142e8..08d156583ab0d3472c49fc91c89caec9b7964c7f 100644
|
| --- a/components/policy/core/common/cloud/device_management_service.cc
|
| +++ b/components/policy/core/common/cloud/device_management_service.cc
|
| @@ -452,7 +452,7 @@ DeviceManagementService::DeviceManagementService(
|
| }
|
|
|
| void DeviceManagementService::StartJob(DeviceManagementRequestJobImpl* job) {
|
| - std::string server_url = GetServerURL();
|
| + std::string server_url = GetServerUrl();
|
| net::URLFetcher* fetcher = net::URLFetcher::Create(
|
| kURLFetcherID, job->GetURL(server_url), net::URLFetcher::POST, this);
|
| job->ConfigureRequest(fetcher);
|
| @@ -460,7 +460,7 @@ void DeviceManagementService::StartJob(DeviceManagementRequestJobImpl* job) {
|
| fetcher->Start();
|
| }
|
|
|
| -std::string DeviceManagementService::GetServerURL() {
|
| +std::string DeviceManagementService::GetServerUrl() {
|
| return configuration_->GetServerUrl();
|
| }
|
|
|
|
|