| 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 // in order to use Easy Unlock. | 1299 // in order to use Easy Unlock. |
| 1300 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; | 1300 const char kEasyUnlockProximityRequired[] = "easy_unlock.proximity_required"; |
| 1301 | 1301 |
| 1302 #if BUILDFLAG(ENABLE_EXTENSIONS) | 1302 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 1303 // Used to indicate whether or not the toolbar redesign bubble has been shown | 1303 // Used to indicate whether or not the toolbar redesign bubble has been shown |
| 1304 // and acknowledged, and the last time the bubble was shown. | 1304 // and acknowledged, and the last time the bubble was shown. |
| 1305 const char kToolbarIconSurfacingBubbleAcknowledged[] = | 1305 const char kToolbarIconSurfacingBubbleAcknowledged[] = |
| 1306 "toolbar_icon_surfacing_bubble_acknowledged"; | 1306 "toolbar_icon_surfacing_bubble_acknowledged"; |
| 1307 const char kToolbarIconSurfacingBubbleLastShowTime[] = | 1307 const char kToolbarIconSurfacingBubbleLastShowTime[] = |
| 1308 "toolbar_icon_surfacing_bubble_show_time"; | 1308 "toolbar_icon_surfacing_bubble_show_time"; |
| 1309 | |
| 1310 // Used to track component actions in the toolbar that were migrated from | |
| 1311 // extensions. | |
| 1312 const char kToolbarMigratedComponentActionStatus[] = | |
| 1313 "toolbar_migrated_component_action_status"; | |
| 1314 #endif | 1309 #endif |
| 1315 | 1310 |
| 1316 #if BUILDFLAG(ENABLE_WEBRTC) | 1311 #if BUILDFLAG(ENABLE_WEBRTC) |
| 1317 // Whether WebRTC should bind to individual NICs to explore all possible routing | 1312 // Whether WebRTC should bind to individual NICs to explore all possible routing |
| 1318 // options. Default is true. This has become obsoleted and replaced by | 1313 // options. Default is true. This has become obsoleted and replaced by |
| 1319 // kWebRTCIPHandlingPolicy. TODO(guoweis): Remove this at M50. | 1314 // kWebRTCIPHandlingPolicy. TODO(guoweis): Remove this at M50. |
| 1320 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; | 1315 const char kWebRTCMultipleRoutesEnabled[] = "webrtc.multiple_routes_enabled"; |
| 1321 // Whether WebRTC should use non-proxied UDP. If false, WebRTC will not send UDP | 1316 // Whether WebRTC should use non-proxied UDP. If false, WebRTC will not send UDP |
| 1322 // unless it goes through a proxy (i.e RETURN when it's available). If no UDP | 1317 // unless it goes through a proxy (i.e RETURN when it's available). If no UDP |
| 1323 // proxy is configured, it will not send UDP. If true, WebRTC will send UDP | 1318 // proxy is configured, it will not send UDP. If true, WebRTC will send UDP |
| (...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2382 // default search engine, if it is the Google search engine. | 2377 // default search engine, if it is the Google search engine. |
| 2383 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; | 2378 const char kGoogleDSEGeolocationSetting[] = "google_dse_geolocation_setting"; |
| 2384 | 2379 |
| 2385 // A dictionary of manifest URLs of Web Share Targets to a dictionary containing | 2380 // A dictionary of manifest URLs of Web Share Targets to a dictionary containing |
| 2386 // attributes of its share_target field found in its manifest. Each key in the | 2381 // attributes of its share_target field found in its manifest. Each key in the |
| 2387 // dictionary is the name of the attribute, and the value is the corresponding | 2382 // dictionary is the name of the attribute, and the value is the corresponding |
| 2388 // value. | 2383 // value. |
| 2389 const char kWebShareVisitedTargets[] = "profile.web_share.visited_targets"; | 2384 const char kWebShareVisitedTargets[] = "profile.web_share.visited_targets"; |
| 2390 | 2385 |
| 2391 } // namespace prefs | 2386 } // namespace prefs |
| OLD | NEW |