Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: chrome/common/pref_names.cc

Issue 54863002: Implement a salt for MediaSource IDs that can be cleared by a user. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed jois nit. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/browser/loader/resource_scheduler_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1110 const char kGoogleGeolocationAccessEnabled[] = 1110 const char kGoogleGeolocationAccessEnabled[] =
1111 "googlegeolocationaccess.enabled"; 1111 "googlegeolocationaccess.enabled";
1112 #endif 1112 #endif
1113 1113
1114 // The default audio capture device used by the Media content setting. 1114 // The default audio capture device used by the Media content setting.
1115 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device"; 1115 const char kDefaultAudioCaptureDevice[] = "media.default_audio_capture_device";
1116 1116
1117 // The default video capture device used by the Media content setting. 1117 // The default video capture device used by the Media content setting.
1118 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; 1118 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device";
1119 1119
1120 // The salt used for creating random MediaSource IDs.
1121 const char kMediaDeviceIdSalt[] = "media.device_id_salt";
1122
1120 // Preference to disable 3D APIs (WebGL, Pepper 3D). 1123 // Preference to disable 3D APIs (WebGL, Pepper 3D).
1121 const char kDisable3DAPIs[] = "disable_3d_apis"; 1124 const char kDisable3DAPIs[] = "disable_3d_apis";
1122 1125
1123 // Whether to enable hyperlink auditing ("<a ping>"). 1126 // Whether to enable hyperlink auditing ("<a ping>").
1124 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; 1127 const char kEnableHyperlinkAuditing[] = "enable_a_ping";
1125 1128
1126 // Whether to enable sending referrers. 1129 // Whether to enable sending referrers.
1127 const char kEnableReferrers[] = "enable_referrers"; 1130 const char kEnableReferrers[] = "enable_referrers";
1128 1131
1129 // Whether to send the DNT header. 1132 // Whether to send the DNT header.
(...skipping 1487 matching lines...) Expand 10 before | Expand all | Expand 10 after
2617 #if defined(OS_ANDROID) 2620 #if defined(OS_ANDROID)
2618 // A list of partner bookmark rename/remove mappings. 2621 // A list of partner bookmark rename/remove mappings.
2619 // Each list item is a dictionary containing a "url", a "provider_title" and 2622 // Each list item is a dictionary containing a "url", a "provider_title" and
2620 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2623 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2621 // given by the PartnerBookmarksProvider and either the user-visible renamed 2624 // given by the PartnerBookmarksProvider and either the user-visible renamed
2622 // title or an empty string if the bookmark node was removed. 2625 // title or an empty string if the bookmark node was removed.
2623 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2626 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2624 #endif 2627 #endif
2625 2628
2626 } // namespace prefs 2629 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | content/browser/loader/resource_scheduler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698