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

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

Issue 10537099: add "always allow" option to the mediastream infobar and allow user to allow/not allow acces to devi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: addressed comments from joaodasilva and bauerb, added support to Incognito mode. Created 8 years, 6 months 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
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 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 1804 matching lines...) Expand 10 before | Expand all | Expand 10 after
1815 const char kManagedDefaultJavaScriptSetting[] = 1815 const char kManagedDefaultJavaScriptSetting[] =
1816 "profile.managed_default_content_settings.javascript"; 1816 "profile.managed_default_content_settings.javascript";
1817 const char kManagedDefaultPluginsSetting[] = 1817 const char kManagedDefaultPluginsSetting[] =
1818 "profile.managed_default_content_settings.plugins"; 1818 "profile.managed_default_content_settings.plugins";
1819 const char kManagedDefaultPopupsSetting[] = 1819 const char kManagedDefaultPopupsSetting[] =
1820 "profile.managed_default_content_settings.popups"; 1820 "profile.managed_default_content_settings.popups";
1821 const char kManagedDefaultGeolocationSetting[] = 1821 const char kManagedDefaultGeolocationSetting[] =
1822 "profile.managed_default_content_settings.geolocation"; 1822 "profile.managed_default_content_settings.geolocation";
1823 const char kManagedDefaultNotificationsSetting[] = 1823 const char kManagedDefaultNotificationsSetting[] =
1824 "profile.managed_default_content_settings.notifications"; 1824 "profile.managed_default_content_settings.notifications";
1825 const char kManagedDefaultMediaStreamSetting[] =
1826 "profile.managed_default_content_settings.media_stream";
no longer working on chromium 2012/06/20 17:24:38 To joaodasilva: Done with using the same naming st
1825 1827
1826 // Preferences that are exclusively used to store managed 1828 // Preferences that are exclusively used to store managed
1827 // content settings patterns. 1829 // content settings patterns.
1828 const char kManagedCookiesAllowedForUrls[] = 1830 const char kManagedCookiesAllowedForUrls[] =
1829 "profile.managed_cookies_allowed_for_urls"; 1831 "profile.managed_cookies_allowed_for_urls";
1830 const char kManagedCookiesBlockedForUrls[] = 1832 const char kManagedCookiesBlockedForUrls[] =
1831 "profile.managed_cookies_blocked_for_urls"; 1833 "profile.managed_cookies_blocked_for_urls";
1832 const char kManagedCookiesSessionOnlyForUrls[] = 1834 const char kManagedCookiesSessionOnlyForUrls[] =
1833 "profile.managed_cookies_sessiononly_for_urls"; 1835 "profile.managed_cookies_sessiononly_for_urls";
1834 const char kManagedImagesAllowedForUrls[] = 1836 const char kManagedImagesAllowedForUrls[] =
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1950 const char kNetworkProfileLastWarningTime[] = 1952 const char kNetworkProfileLastWarningTime[] =
1951 "network_profile.last_warning_time"; 1953 "network_profile.last_warning_time";
1952 1954
1953 #if defined(OS_MACOSX) 1955 #if defined(OS_MACOSX)
1954 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. 1956 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5.
1955 const char kMacLeopardObsoleteInfobarLastShown[] = 1957 const char kMacLeopardObsoleteInfobarLastShown[] =
1956 "mac_105_obsolete_infobar_last_shown"; 1958 "mac_105_obsolete_infobar_last_shown";
1957 #endif // defined(OS_MACOSX) 1959 #endif // defined(OS_MACOSX)
1958 1960
1959 } // namespace prefs 1961 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698