| 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 chrome://welcome First Run |
| 1311 // page. |
| 1312 const char kHasSeenWelcomeUI[] = "browser.has_seen_welcome_ui"; |
| 1313 #endif |
| 1314 |
| 1309 // *************** LOCAL STATE *************** | 1315 // *************** LOCAL STATE *************** |
| 1310 // These are attached to the machine/installation | 1316 // These are attached to the machine/installation |
| 1311 | 1317 |
| 1312 // Directory of the last profile used. | 1318 // Directory of the last profile used. |
| 1313 const char kProfileLastUsed[] = "profile.last_used"; | 1319 const char kProfileLastUsed[] = "profile.last_used"; |
| 1314 | 1320 |
| 1315 // List of directories of the profiles last active. | 1321 // List of directories of the profiles last active. |
| 1316 const char kProfilesLastActive[] = "profile.last_active_profiles"; | 1322 const char kProfilesLastActive[] = "profile.last_active_profiles"; |
| 1317 | 1323 |
| 1318 // Total number of profiles created for this Chrome build. Used to tag profile | 1324 // 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. | 2315 // How many times the search geolocation disclosure has been shown. |
| 2310 const char kSearchGeolocationDisclosureShownCount[] = | 2316 const char kSearchGeolocationDisclosureShownCount[] = |
| 2311 "search_geolocation_disclosure.shown_count"; | 2317 "search_geolocation_disclosure.shown_count"; |
| 2312 | 2318 |
| 2313 // When the disclosure was shown last. | 2319 // When the disclosure was shown last. |
| 2314 const char kSearchGeolocationDisclosureLastShowDate[] = | 2320 const char kSearchGeolocationDisclosureLastShowDate[] = |
| 2315 "search_geolocation_disclosure.last_show_date"; | 2321 "search_geolocation_disclosure.last_show_date"; |
| 2316 #endif | 2322 #endif |
| 2317 | 2323 |
| 2318 } // namespace prefs | 2324 } // namespace prefs |
| OLD | NEW |