| Index: chrome/browser/chromeos/policy/device_quirks_policy_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/policy/device_quirks_policy_browsertest.cc b/chrome/browser/chromeos/policy/device_quirks_policy_browsertest.cc
|
| index b684115b6a559ec035f59677343acecf8fa93d59..d9cb804ccfcb1b407d5514574c1887645c97219d 100644
|
| --- a/chrome/browser/chromeos/policy/device_quirks_policy_browsertest.cc
|
| +++ b/chrome/browser/chromeos/policy/device_quirks_policy_browsertest.cc
|
| @@ -15,6 +15,7 @@
|
| namespace chromeos {
|
|
|
| const int64_t kProductId = 0x0000aaaa;
|
| +const char kDisplayName[] = "FakeDisplay";
|
| const char kFakeIccData[] = {0x00, 0x00, 0x08, 0x90, 0x20, 0x20,
|
| 0x20, 0x20, 0x02, 0x10, 0x00, 0x00};
|
|
|
| @@ -66,8 +67,9 @@ class DeviceQuirksPolicyTest : public policy::DevicePolicyCrosBrowserTest {
|
| icc_path_.clear();
|
|
|
| quirks::QuirksManager::Get()->RequestIccProfilePath(
|
| - kProductId, base::Bind(&DeviceQuirksPolicyTest::OnQuirksClientFinished,
|
| - base::Unretained(this)));
|
| + kProductId, kDisplayName,
|
| + base::Bind(&DeviceQuirksPolicyTest::OnQuirksClientFinished,
|
| + base::Unretained(this)));
|
|
|
| run_loop.Run();
|
|
|
|
|