| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 // |
| 5 // List of Group Policy Settings objects. |
| 6 |
| 7 #include "build/build_config.h" |
| 8 #include "chrome/browser/group_policy_settings.h" |
| 9 |
| 10 namespace group_policy { |
| 11 |
| 12 // TODO(gwilson): The actual group policy settings need to be finalized. |
| 13 // Change this testing set to the true supported set. |
| 14 DEFINE_POLICY_STRING(Homepage, L"Preferences\\", L"Homepage"); |
| 15 DEFINE_POLICY_BOOL(HomepageIsNewTabPage, |
| 16 L"Preferences\\", |
| 17 L"HomepageIsNewTabPage"); |
| 18 DEFINE_POLICY_STRINGLIST(ChromeFrameDomainWhiteList, |
| 19 L"ChromeFrameDomainWhiteList"); |
| 20 |
| 21 }; // namespace |
| 22 |
| OLD | NEW |