| OLD | NEW |
| 1 // Copyright (c) 2011 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/memory/scoped_temp_dir.h" | |
| 9 #include "base/path_service.h" | 8 #include "base/path_service.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/policy/config_dir_policy_provider.h" | 11 #include "chrome/browser/policy/config_dir_policy_provider.h" |
| 12 #include "chrome/browser/policy/configuration_policy_pref_store.h" | 12 #include "chrome/browser/policy/configuration_policy_pref_store.h" |
| 13 #include "chrome/browser/policy/mock_configuration_policy_store.h" | 13 #include "chrome/browser/policy/mock_configuration_policy_store.h" |
| 14 #include "content/browser/browser_thread.h" | 14 #include "content/browser/browser_thread.h" |
| 15 #include "content/common/json_value_serializer.h" | 15 #include "content/common/json_value_serializer.h" |
| 16 #include "policy/policy_constants.h" | 16 #include "policy/policy_constants.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 18 |
| 19 namespace policy { | 19 namespace policy { |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 kPolicyBookmarkBarEnabled, | 364 kPolicyBookmarkBarEnabled, |
| 365 key::kBookmarkBarEnabled), | 365 key::kBookmarkBarEnabled), |
| 366 ValueTestParams::ForBooleanPolicy( | 366 ValueTestParams::ForBooleanPolicy( |
| 367 kPolicyEditBookmarksEnabled, | 367 kPolicyEditBookmarksEnabled, |
| 368 key::kEditBookmarksEnabled), | 368 key::kEditBookmarksEnabled), |
| 369 ValueTestParams::ForListPolicy( | 369 ValueTestParams::ForListPolicy( |
| 370 kPolicyDisabledSchemes, | 370 kPolicyDisabledSchemes, |
| 371 key::kDisabledSchemes))); | 371 key::kDisabledSchemes))); |
| 372 | 372 |
| 373 } // namespace policy | 373 } // namespace policy |
| OLD | NEW |