Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Side by Side Diff: chrome/browser/group_policy_settings.cc

Issue 450037: Adds basic group policy support. Resubmitting r33093 with a new unit test.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/group_policy_settings.h ('k') | chrome/browser/group_policy_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/browser/group_policy_settings.h ('k') | chrome/browser/group_policy_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698