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

Side by Side Diff: chrome/common/policy_constants.cc

Issue 3033030: [win] Don't initialize the crash reporter on windows if disabled by configuration management. (Closed) Base URL: ssh://mnissler@kea.muc/usr/local/google/home/mnissler/chrome/src/
Patch Set: Allow policy to force-enable metrics reporting. Created 10 years, 4 months 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
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 #include "chrome/common/policy_constants.h"
6
7 namespace policy {
8
9 #if defined(OS_WIN)
10 #if defined(GOOGLE_CHROME_BUILD)
11 const wchar_t kRegistrySubKey[] = L"SOFTWARE\\Policies\\Google\\Chrome";
12 #else
13 const wchar_t kRegistrySubKey[] = L"SOFTWARE\\Policies\\Chromium";
14 #endif
15 #endif
16
17 namespace key {
18
19 const char kHomepageLocation[] = "HomepageLocation";
20 const char kHomepageIsNewTabPage[] = "HomepageIsNewTabPage";
21 const char kProxyServerMode[] = "ProxyServerMode";
22 const char kProxyServer[] = "ProxyServer";
23 const char kProxyPacUrl[] = "ProxyPacUrl";
24 const char kProxyBypassList[] = "ProxyBypassList";
25 const char kAlternateErrorPagesEnabled[] = "AlternateErrorPagesEnabled";
26 const char kSearchSuggestEnabled[] = "SearchSuggestEnabled";
27 const char kDnsPrefetchingEnabled[] = "DnsPrefetchingEnabled";
28 const char kSafeBrowsingEnabled[] = "SafeBrowsingEnabled";
29 const char kMetricsReportingEnabled[] = "MetricsReportingEnabled";
30 const char kPasswordManagerEnabled[] = "PasswordManagerEnabled";
31 const char kDisabledPluginsList[] = "DisabledPluginsList";
32 const char kApplicationLocaleValue[] = "ApplicationLocaleValue";
33 const char kSyncDisabled[] = "SyncDisabled";
34
35 } // namespace key
36
37 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698