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

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

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 #ifndef CHROME_COMMON_POLICY_CONSTANTS_H_
6 #define CHROME_COMMON_POLICY_CONSTANTS_H_
7 #pragma once
8
9 #include "build/build_config.h"
10
11 namespace policy {
12
13 #if defined(OS_WIN)
14 // The windows registry path we read the policy configuration from.
15 extern const wchar_t kRegistrySubKey[];
16 #endif
17
18 // Key names for the policy settings.
19 namespace key {
20
21 extern const char kHomepageLocation[];
22 extern const char kHomepageIsNewTabPage[];
23 extern const char kProxyServerMode[];
24 extern const char kProxyServer[];
25 extern const char kProxyPacUrl[];
26 extern const char kProxyBypassList[];
27 extern const char kAlternateErrorPagesEnabled[];
28 extern const char kSearchSuggestEnabled[];
29 extern const char kDnsPrefetchingEnabled[];
30 extern const char kSafeBrowsingEnabled[];
31 extern const char kMetricsReportingEnabled[];
32 extern const char kPasswordManagerEnabled[];
33 extern const char kDisabledPluginsList[];
34 extern const char kApplicationLocaleValue[];
35 extern const char kSyncDisabled[];
36
37 } // namespace key
38
39 } // namespace policy
40
41 #endif // CHROME_COMMON_POLICY_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698