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

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

Issue 2894783003: Make Hands-Off Zero-Touch Enrollment compatibile with tests (Closed)
Patch Set: Make Hands-Off Zero-Touch Enrollment compatibile with tests Created 3 years, 7 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.h" 9 #include "chrome/common/features.h"
10 #include "chrome/common/pref_font_webkit_names.h" 10 #include "chrome/common/pref_font_webkit_names.h"
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after
1907 1907
1908 // If material design OOBE should be selected if OOBE has been interrupted. 1908 // If material design OOBE should be selected if OOBE has been interrupted.
1909 const char kOobeMdMode[] = "OobeMdModeEnabled"; 1909 const char kOobeMdMode[] = "OobeMdModeEnabled";
1910 1910
1911 // A boolean pref to indicate if an eligible controller (either a Chrome OS 1911 // A boolean pref to indicate if an eligible controller (either a Chrome OS
1912 // device, or an Android device) is detected during bootstrapping or 1912 // device, or an Android device) is detected during bootstrapping or
1913 // shark/remora setup process. A controller can help the device go through OOBE 1913 // shark/remora setup process. A controller can help the device go through OOBE
1914 // and get enrolled into a domain automatically. 1914 // and get enrolled into a domain automatically.
1915 const char kOobeControllerDetected[] = "OobeControllerDetected"; 1915 const char kOobeControllerDetected[] = "OobeControllerDetected";
1916 1916
1917 // A 64-bit signed integer pref (encoded as a string) which stores the time
1918 // of the last OOBE-initiated update check not resulting in an update.
1919 const char kOobeTimeOfLastUpdateCheckWithoutUpdate[] =
1920 "OobeTimeOfLastUpdateCheckWithoutUpdate";
1921
1917 // A boolean pref for whether the Goodies promotion webpage has been displayed, 1922 // A boolean pref for whether the Goodies promotion webpage has been displayed,
1918 // or otherwise disqualified for auto-display, on this device. 1923 // or otherwise disqualified for auto-display, on this device.
1919 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage"; 1924 const char kCanShowOobeGoodiesPage[] = "CanShowOobeGoodiesPage";
1920 1925
1921 // A boolean pref of the device registered flag (second part after first login). 1926 // A boolean pref of the device registered flag (second part after first login).
1922 const char kDeviceRegistered[] = "DeviceRegistered"; 1927 const char kDeviceRegistered[] = "DeviceRegistered";
1923 1928
1924 // Boolean pref to signal corrupted enrollment to force the device through 1929 // Boolean pref to signal corrupted enrollment to force the device through
1925 // enrollment recovery flow upon next boot. 1930 // enrollment recovery flow upon next boot.
1926 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired"; 1931 const char kEnrollmentRecoveryRequired[] = "EnrollmentRecoveryRequired";
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
2538 "settings_reset_prompt.last_triggered_for_homepage"; 2543 "settings_reset_prompt.last_triggered_for_homepage";
2539 2544
2540 #if defined(OS_ANDROID) 2545 #if defined(OS_ANDROID)
2541 // Timestamp of the clipboard's last modified time, stored in base::Time's 2546 // Timestamp of the clipboard's last modified time, stored in base::Time's
2542 // internal format (int64) in local store. (I.e., this is not a per-profile 2547 // internal format (int64) in local store. (I.e., this is not a per-profile
2543 // pref.) 2548 // pref.)
2544 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; 2549 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time";
2545 #endif 2550 #endif
2546 2551
2547 } // namespace prefs 2552 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698