| Index: chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/policy/device_local_account_browsertest.cc b/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| index 6a24f9bff058df3d82286e5e7f923e9d321b3c80..08481052f47bf3886d40ead1b9948cef50ff7cb2 100644
|
| --- a/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| +++ b/chrome/browser/chromeos/policy/device_local_account_browsertest.cc
|
| @@ -97,6 +97,7 @@
|
| #include "net/test/embedded_test_server/http_response.h"
|
| #include "net/url_request/test_url_fetcher_factory.h"
|
| #include "net/url_request/url_fetcher_delegate.h"
|
| +#include "net/url_request/url_request_status.h"
|
| #include "policy/policy_constants.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "third_party/cros_system_api/dbus/service_constants.h"
|
| @@ -837,7 +838,8 @@ IN_PROC_BROWSER_TEST_F(DeviceLocalAccountTest, ExternalData) {
|
| run_loop->QuitClosure())));
|
| fetcher_factory->SetFakeResponse(GURL(kExternalDataURL),
|
| kExternalData,
|
| - net::HTTP_OK);
|
| + net::HTTP_OK,
|
| + net::URLRequestStatus::SUCCESS);
|
|
|
| // TODO(bartfab): The test injects an ExternalDataFetcher for an arbitrary
|
| // policy. This is only done because there are no policies that reference
|
|
|