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

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

Issue 820133002: Reusing names of policy keys from policy_constants.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "chrome/common/pref_font_webkit_names.h" 8 #include "chrome/common/pref_font_webkit_names.h"
9 9
10 namespace prefs { 10 namespace prefs {
(...skipping 1680 matching lines...) Expand 10 before | Expand all | Expand 10 after
1691 1691
1692 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic. 1692 // Whether Chrome Remote Desktop can proxy gnubby authentication traffic.
1693 const char kRemoteAccessHostAllowGnubbyAuth[] = 1693 const char kRemoteAccessHostAllowGnubbyAuth[] =
1694 "remote_access.host_allow_gnubby_auth"; 1694 "remote_access.host_allow_gnubby_auth";
1695 1695
1696 // Boolean that indicates whether the Chromoting host should allow connections 1696 // Boolean that indicates whether the Chromoting host should allow connections
1697 // using relay servers. 1697 // using relay servers.
1698 const char kRemoteAccessHostAllowRelayedConnection[] = 1698 const char kRemoteAccessHostAllowRelayedConnection[] =
1699 "remote_access.host_allow_relayed_connection"; 1699 "remote_access.host_allow_relayed_connection";
1700 1700
1701 // Boolean controlling if local host username has to match host owner username.
1702 const char kRemoteAccessHostMatchUsername[] =
1703 "remote_access.host_match_username";
1704
1705 // String.
1706 const char kRemoteAccessHostTokenUrl[] =
1707 "remote_access.host_token_url";
1708
1709 // String.
1710 const char kRemoteAccessHostTokenValidationUrl[] =
1711 "remote_access.host_token_validation_url";
1712
1713 // String.
1714 const char kRemoteAccessHostTokenValidationCertificateIssuer[] =
1715 "remote_access.host_token_validation_certificate_issuer";
1716
1717 // String containing JSON with policy overrides for Debug builds of Chromoting.
1718 const char kRemoteAccessHostDebugOverridePolicies[] =
1719 "remote_access.host_debug_override_policies";
1720
1701 // String containing the UDP port range that the Chromoting host should used 1721 // String containing the UDP port range that the Chromoting host should used
1702 // when connecting to clients. The port range should be in the form: 1722 // when connecting to clients. The port range should be in the form:
1703 // <min_port>-<max_port>. E.g. 12400-12409. 1723 // <min_port>-<max_port>. E.g. 12400-12409.
1704 const char kRemoteAccessHostUdpPortRange[] = 1724 const char kRemoteAccessHostUdpPortRange[] =
1705 "remote_access.host_udp_port_range"; 1725 "remote_access.host_udp_port_range";
1706 1726
1707 // The last used printer and its settings. 1727 // The last used printer and its settings.
1708 const char kPrintPreviewStickySettings[] = 1728 const char kPrintPreviewStickySettings[] =
1709 "printing.print_preview_sticky_settings"; 1729 "printing.print_preview_sticky_settings";
1710 1730
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
2293 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes"; 2313 const char kPasswordBubbleNopesCount[] = "password_bubble.nopes";
2294 2314
2295 // Last user's interaction with the password bubble. 2315 // Last user's interaction with the password bubble.
2296 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions"; 2316 const char kPasswordBubbleLastInteractions[] = "password_bubble.interactions";
2297 2317
2298 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. 2318 // Boolean that indicates whether elevation is needed to recover Chrome upgrade.
2299 const char kRecoveryComponentNeedsElevation[] = 2319 const char kRecoveryComponentNeedsElevation[] =
2300 "recovery_component.needs_elevation"; 2320 "recovery_component.needs_elevation";
2301 2321
2302 } // namespace prefs 2322 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698