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

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

Issue 2635773003: Implement Win 10 onboarding content logic (Closed)
Patch Set: Created 3 years, 11 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') | no next file » | 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 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
1306 const char kWebRTCIPHandlingPolicy[] = "webrtc.ip_handling_policy"; 1306 const char kWebRTCIPHandlingPolicy[] = "webrtc.ip_handling_policy";
1307 // Define range of UDP ports allowed to be used by WebRTC PeerConnections. 1307 // Define range of UDP ports allowed to be used by WebRTC PeerConnections.
1308 const char kWebRTCUDPPortRange[] = "webrtc.udp_port_range"; 1308 const char kWebRTCUDPPortRange[] = "webrtc.udp_port_range";
1309 #endif 1309 #endif
1310 1310
1311 #if !defined(OS_ANDROID) 1311 #if !defined(OS_ANDROID)
1312 // Whether or not this profile has been shown the Welcome page. 1312 // Whether or not this profile has been shown the Welcome page.
1313 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page"; 1313 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page";
1314 #endif 1314 #endif
1315 1315
1316 #if defined(OS_WIN)
1317 // Whether or not this profile has been shown the Win10 promo page.
1318 const char kHasSeenWin10PromoPage[] = "browser.has_seen_win10_promo_page";
1319 #endif
1320
1316 // *************** LOCAL STATE *************** 1321 // *************** LOCAL STATE ***************
1317 // These are attached to the machine/installation 1322 // These are attached to the machine/installation
1318 1323
1319 // Directory of the last profile used. 1324 // Directory of the last profile used.
1320 const char kProfileLastUsed[] = "profile.last_used"; 1325 const char kProfileLastUsed[] = "profile.last_used";
1321 1326
1322 // List of directories of the profiles last active. 1327 // List of directories of the profiles last active.
1323 const char kProfilesLastActive[] = "profile.last_active_profiles"; 1328 const char kProfilesLastActive[] = "profile.last_active_profiles";
1324 1329
1325 // Total number of profiles created for this Chrome build. Used to tag profile 1330 // Total number of profiles created for this Chrome build. Used to tag profile
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
2326 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = 2331 const char kSearchGeolocationPreDisclosureMetricsRecorded[] =
2327 "search_geolocation_pre_disclosure_metrics_recorded"; 2332 "search_geolocation_pre_disclosure_metrics_recorded";
2328 2333
2329 // Whether the metrics for the state of geolocation post-disclosure being shown 2334 // Whether the metrics for the state of geolocation post-disclosure being shown
2330 // have been recorded. 2335 // have been recorded.
2331 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = 2336 const char kSearchGeolocationPostDisclosureMetricsRecorded[] =
2332 "search_geolocation_post_disclosure_metrics_recorded"; 2337 "search_geolocation_post_disclosure_metrics_recorded";
2333 #endif 2338 #endif
2334 2339
2335 } // namespace prefs 2340 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698