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

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

Issue 1775023002: Enterprise policy to prevent queries to the Quirks Server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 629
630 // A dictionary pref that specifies per-display layout/offset information. 630 // A dictionary pref that specifies per-display layout/offset information.
631 // Its key is the ID of the display and its value is a dictionary for the 631 // Its key is the ID of the display and its value is a dictionary for the
632 // layout/offset information. 632 // layout/offset information.
633 const char kSecondaryDisplays[] = "settings.display.secondary_displays"; 633 const char kSecondaryDisplays[] = "settings.display.secondary_displays";
634 634
635 // A dictionary pref that specifies the state of the rotation lock, and the 635 // A dictionary pref that specifies the state of the rotation lock, and the
636 // display orientation, for the internal display. 636 // display orientation, for the internal display.
637 const char kDisplayRotationLock[] = "settings.display.rotation_lock"; 637 const char kDisplayRotationLock[] = "settings.display.rotation_lock";
638 638
639 // A boolean pref representing an enterprise policy to enable any pings or
640 // requests to the Quirks Server. Enabled by default.
641 const char kQuirksClientEnabled[] = "policy.display.quirks_client_enabled";
642
639 // A boolean pref indicating whether user activity has been observed in the 643 // A boolean pref indicating whether user activity has been observed in the
640 // current session already. The pref is used to restore information about user 644 // current session already. The pref is used to restore information about user
641 // activity after browser crashes. 645 // activity after browser crashes.
642 const char kSessionUserActivitySeen[] = "session.user_activity_seen"; 646 const char kSessionUserActivitySeen[] = "session.user_activity_seen";
643 647
644 // A preference to keep track of the session start time. If the session length 648 // A preference to keep track of the session start time. If the session length
645 // limit is configured to start running after initial user activity has been 649 // limit is configured to start running after initial user activity has been
646 // observed, the pref is set after the first user activity in a session. 650 // observed, the pref is set after the first user activity in a session.
647 // Otherwise, it is set immediately after session start. The pref is used to 651 // Otherwise, it is set immediately after session start. The pref is used to
648 // restore the session start time after browser crashes. The time is expressed 652 // restore the session start time after browser crashes. The time is expressed
(...skipping 1528 matching lines...) Expand 10 before | Expand all | Expand 10 after
2177 const char kMediaRouterEnableCloudServices[] = 2181 const char kMediaRouterEnableCloudServices[] =
2178 "media_router.cloudservices.enabled"; 2182 "media_router.cloudservices.enabled";
2179 #endif // defined(GOOGLE_CHROME_BUILD) 2183 #endif // defined(GOOGLE_CHROME_BUILD)
2180 // Whether or not the Media Router first run flow has been acknowledged by the 2184 // Whether or not the Media Router first run flow has been acknowledged by the
2181 // user. 2185 // user.
2182 const char kMediaRouterFirstRunFlowAcknowledged[] = 2186 const char kMediaRouterFirstRunFlowAcknowledged[] =
2183 "media_router.firstrunflow.acknowledged"; 2187 "media_router.firstrunflow.acknowledged";
2184 #endif 2188 #endif
2185 2189
2186 } // namespace prefs 2190 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698