| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <algorithm> | 5 #include <algorithm> |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
| 9 #include "base/scoped_temp_dir.h" | 9 #include "base/scoped_temp_dir.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "chrome/browser/browser_thread.h" | 11 #include "chrome/browser/browser_thread.h" |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 kPolicyExtensionInstallDenyList, | 316 kPolicyExtensionInstallDenyList, |
| 317 key::kExtensionInstallDenyList), | 317 key::kExtensionInstallDenyList), |
| 318 ValueTestParams::ForBooleanPolicy( | 318 ValueTestParams::ForBooleanPolicy( |
| 319 kPolicyShowHomeButton, | 319 kPolicyShowHomeButton, |
| 320 key::kShowHomeButton), | 320 key::kShowHomeButton), |
| 321 ValueTestParams::ForBooleanPolicy( | 321 ValueTestParams::ForBooleanPolicy( |
| 322 kPolicyPrintingEnabled, | 322 kPolicyPrintingEnabled, |
| 323 key::kPrintingEnabled), | 323 key::kPrintingEnabled), |
| 324 ValueTestParams::ForIntegerPolicy( | 324 ValueTestParams::ForIntegerPolicy( |
| 325 kPolicyPolicyRefreshRate, | 325 kPolicyPolicyRefreshRate, |
| 326 key::kPolicyRefreshRate))); | 326 key::kPolicyRefreshRate), |
| 327 ValueTestParams::ForBooleanPolicy( |
| 328 kPolicyIncognitoEnabled, |
| 329 key::kIncognitoEnabled))); |
| 327 | 330 |
| 328 } // namespace policy | 331 } // namespace policy |
| OLD | NEW |