| 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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2319 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = | 2324 const char kSearchGeolocationPreDisclosureMetricsRecorded[] = |
| 2320 "search_geolocation_pre_disclosure_metrics_recorded"; | 2325 "search_geolocation_pre_disclosure_metrics_recorded"; |
| 2321 | 2326 |
| 2322 // Whether the metrics for the state of geolocation post-disclosure being shown | 2327 // Whether the metrics for the state of geolocation post-disclosure being shown |
| 2323 // have been recorded. | 2328 // have been recorded. |
| 2324 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = | 2329 const char kSearchGeolocationPostDisclosureMetricsRecorded[] = |
| 2325 "search_geolocation_post_disclosure_metrics_recorded"; | 2330 "search_geolocation_post_disclosure_metrics_recorded"; |
| 2326 #endif | 2331 #endif |
| 2327 | 2332 |
| 2328 } // namespace prefs | 2333 } // namespace prefs |
| OLD | NEW |