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

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

Issue 2578843002: Implement Win 10 onboarding content logic (Closed)
Patch Set: Fixed comments Created 4 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
« 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 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after
1314 const char kWebRTCIPHandlingPolicy[] = "webrtc.ip_handling_policy"; 1314 const char kWebRTCIPHandlingPolicy[] = "webrtc.ip_handling_policy";
1315 // Define range of UDP ports allowed to be used by WebRTC PeerConnections. 1315 // Define range of UDP ports allowed to be used by WebRTC PeerConnections.
1316 const char kWebRTCUDPPortRange[] = "webrtc.udp_port_range"; 1316 const char kWebRTCUDPPortRange[] = "webrtc.udp_port_range";
1317 #endif 1317 #endif
1318 1318
1319 #if !defined(OS_ANDROID) 1319 #if !defined(OS_ANDROID)
1320 // Whether or not this profile has been shown the Welcome page. 1320 // Whether or not this profile has been shown the Welcome page.
1321 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page"; 1321 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page";
1322 #endif 1322 #endif
1323 1323
1324 #if defined(OS_WIN)
1325 // Whether or not this profile has been shown the Win10 promo page.
1326 const char kHasSeenWin10PromoPage[] = "browser.has_seen_win10_promo_page";
1327 #endif
1328
1324 // *************** LOCAL STATE *************** 1329 // *************** LOCAL STATE ***************
1325 // These are attached to the machine/installation 1330 // These are attached to the machine/installation
1326 1331
1327 // Directory of the last profile used. 1332 // Directory of the last profile used.
1328 const char kProfileLastUsed[] = "profile.last_used"; 1333 const char kProfileLastUsed[] = "profile.last_used";
1329 1334
1330 // List of directories of the profiles last active. 1335 // List of directories of the profiles last active.
1331 const char kProfilesLastActive[] = "profile.last_active_profiles"; 1336 const char kProfilesLastActive[] = "profile.last_active_profiles";
1332 1337
1333 // Total number of profiles created for this Chrome build. Used to tag profile 1338 // Total number of profiles created for this Chrome build. Used to tag profile
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
2338 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = 2343 const char kSearchGeolocationPreDisclosureMetricsRecorded[] =
2339 "search_geolocation_pre_disclosure_metrics_recorded"; 2344 "search_geolocation_pre_disclosure_metrics_recorded";
2340 2345
2341 // Whether the metrics for the state of geolocation post-disclosure being shown 2346 // Whether the metrics for the state of geolocation post-disclosure being shown
2342 // have been recorded. 2347 // have been recorded.
2343 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = 2348 const char kSearchGeolocationPostDisclosureMetricsRecorded[] =
2344 "search_geolocation_post_disclosure_metrics_recorded"; 2349 "search_geolocation_post_disclosure_metrics_recorded";
2345 #endif 2350 #endif
2346 2351
2347 } // namespace prefs 2352 } // 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