OLD | NEW |
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 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1299 // this at M50. | 1299 // this at M50. |
1300 const char kWebRTCNonProxiedUdpEnabled[] = | 1300 const char kWebRTCNonProxiedUdpEnabled[] = |
1301 "webrtc.nonproxied_udp_enabled"; | 1301 "webrtc.nonproxied_udp_enabled"; |
1302 // Define the IP handling policy override that WebRTC should follow. When not | 1302 // Define the IP handling policy override that WebRTC should follow. When not |
1303 // set, it defaults to "default". | 1303 // set, it defaults to "default". |
1304 const char kWebRTCIPHandlingPolicy[] = "webrtc.ip_handling_policy"; | 1304 const char kWebRTCIPHandlingPolicy[] = "webrtc.ip_handling_policy"; |
1305 // Define range of UDP ports allowed to be used by WebRTC PeerConnections. | 1305 // Define range of UDP ports allowed to be used by WebRTC PeerConnections. |
1306 const char kWebRTCUDPPortRange[] = "webrtc.udp_port_range"; | 1306 const char kWebRTCUDPPortRange[] = "webrtc.udp_port_range"; |
1307 #endif | 1307 #endif |
1308 | 1308 |
| 1309 #if !defined(OS_ANDROID) |
| 1310 // Whether or not this profile has been shown the Welcome page. |
| 1311 const char kHasSeenWelcomePage[] = "browser.has_seen_welcome_page"; |
| 1312 #endif |
| 1313 |
1309 // *************** LOCAL STATE *************** | 1314 // *************** LOCAL STATE *************** |
1310 // These are attached to the machine/installation | 1315 // These are attached to the machine/installation |
1311 | 1316 |
1312 // Directory of the last profile used. | 1317 // Directory of the last profile used. |
1313 const char kProfileLastUsed[] = "profile.last_used"; | 1318 const char kProfileLastUsed[] = "profile.last_used"; |
1314 | 1319 |
1315 // List of directories of the profiles last active. | 1320 // List of directories of the profiles last active. |
1316 const char kProfilesLastActive[] = "profile.last_active_profiles"; | 1321 const char kProfilesLastActive[] = "profile.last_active_profiles"; |
1317 | 1322 |
1318 // Total number of profiles created for this Chrome build. Used to tag profile | 1323 // Total number of profiles created for this Chrome build. Used to tag profile |
(...skipping 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2309 // How many times the search geolocation disclosure has been shown. | 2314 // How many times the search geolocation disclosure has been shown. |
2310 const char kSearchGeolocationDisclosureShownCount[] = | 2315 const char kSearchGeolocationDisclosureShownCount[] = |
2311 "search_geolocation_disclosure.shown_count"; | 2316 "search_geolocation_disclosure.shown_count"; |
2312 | 2317 |
2313 // When the disclosure was shown last. | 2318 // When the disclosure was shown last. |
2314 const char kSearchGeolocationDisclosureLastShowDate[] = | 2319 const char kSearchGeolocationDisclosureLastShowDate[] = |
2315 "search_geolocation_disclosure.last_show_date"; | 2320 "search_geolocation_disclosure.last_show_date"; |
2316 #endif | 2321 #endif |
2317 | 2322 |
2318 } // namespace prefs | 2323 } // namespace prefs |
OLD | NEW |