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 <gtest/gtest.h> | 5 #include <gtest/gtest.h> |
6 #include <windows.h> | 6 #include <windows.h> |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/stl_util-inl.h" | 10 #include "base/stl_util-inl.h" |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 kPolicyBookmarkBarEnabled, | 493 kPolicyBookmarkBarEnabled, |
494 key::kBookmarkBarEnabled), | 494 key::kBookmarkBarEnabled), |
495 PolicyTestParams::ForBooleanPolicy( | 495 PolicyTestParams::ForBooleanPolicy( |
496 kPolicyEditBookmarksEnabled, | 496 kPolicyEditBookmarksEnabled, |
497 key::kEditBookmarksEnabled), | 497 key::kEditBookmarksEnabled), |
498 PolicyTestParams::ForBooleanPolicy( | 498 PolicyTestParams::ForBooleanPolicy( |
499 kPolicyAllowFileSelectionDialogs, | 499 kPolicyAllowFileSelectionDialogs, |
500 key::kAllowFileSelectionDialogs), | 500 key::kAllowFileSelectionDialogs), |
501 PolicyTestParams::ForListPolicy( | 501 PolicyTestParams::ForListPolicy( |
502 kPolicyDisabledSchemes, | 502 kPolicyDisabledSchemes, |
503 key::kDisabledSchemes))); | 503 key::kDisabledSchemes), |
| 504 PolicyTestParams::ForStringPolicy( |
| 505 kPolicyDiskCacheDir, |
| 506 key::kDiskCacheDir))); |
504 | 507 |
505 } // namespace policy | 508 } // namespace policy |
OLD | NEW |