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/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1114 const char kGoogleGeolocationAccessEnabled[] = | 1114 const char kGoogleGeolocationAccessEnabled[] = |
1115 "googlegeolocationaccess.enabled"; | 1115 "googlegeolocationaccess.enabled"; |
1116 #endif | 1116 #endif |
1117 | 1117 |
1118 // The default audio capture device used by the Media content setting. | 1118 // The default audio capture device used by the Media content setting. |
1119 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; | 1119 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; |
1120 | 1120 |
1121 // The default video capture device used by the Media content setting. | 1121 // The default video capture device used by the Media content setting. |
1122 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1122 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
1123 | 1123 |
| 1124 // The salt used for creating random MediaSource IDs. |
| 1125 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; |
| 1126 |
1124 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 1127 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
1125 const char kDisable3DAPIs[] = "disable_3d_apis"; | 1128 const char kDisable3DAPIs[] = "disable_3d_apis"; |
1126 | 1129 |
1127 // Whether to enable hyperlink auditing ("<a ping>"). | 1130 // Whether to enable hyperlink auditing ("<a ping>"). |
1128 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 1131 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
1129 | 1132 |
1130 // Whether to enable sending referrers. | 1133 // Whether to enable sending referrers. |
1131 const char kEnableReferrers[] = "enable_referrers"; | 1134 const char kEnableReferrers[] = "enable_referrers"; |
1132 | 1135 |
1133 // Whether to send the DNT header. | 1136 // Whether to send the DNT header. |
(...skipping 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2579 // A dictionary pref which maps profile names to dictionary values which hold | 2582 // A dictionary pref which maps profile names to dictionary values which hold |
2580 // hashes of profile prefs that we track to detect changes that happen outside | 2583 // hashes of profile prefs that we track to detect changes that happen outside |
2581 // of Chrome. | 2584 // of Chrome. |
2582 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2585 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
2583 | 2586 |
2584 // Stores a pair of local time and corresponding network time to bootstrap | 2587 // Stores a pair of local time and corresponding network time to bootstrap |
2585 // network time tracker when browser starts. | 2588 // network time tracker when browser starts. |
2586 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2589 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
2587 | 2590 |
2588 } // namespace prefs | 2591 } // namespace prefs |
OLD | NEW |