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

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

Issue 10342013: Generate and connect a Pepper identifier for Chrome OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup as per brettw; move to serializedreturnvar in the host msg bounce step Created 8 years, 7 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 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 "settings.internet.mobile.show_3g_promo_notification"; 665 "settings.internet.mobile.show_3g_promo_notification";
666 666
667 // A boolean pref that uses shared proxies. 667 // A boolean pref that uses shared proxies.
668 const char kUseSharedProxies[] = "settings.use_shared_proxies"; 668 const char kUseSharedProxies[] = "settings.use_shared_proxies";
669 669
670 // A string prefs for OAuth1 token. 670 // A string prefs for OAuth1 token.
671 const char kOAuth1Token[] = "settings.account.oauth1_token"; 671 const char kOAuth1Token[] = "settings.account.oauth1_token";
672 672
673 // A string prefs for OAuth1 secret. 673 // A string prefs for OAuth1 secret.
674 const char kOAuth1Secret[] = "settings.account.oauth1_secret"; 674 const char kOAuth1Secret[] = "settings.account.oauth1_secret";
675
676 // A boolean pref that enables the (private) pepper GetID() call.
677 const char kEnableCrosDRM[] = "settings.privacy.drm_enabled";
675 #endif // defined(OS_CHROMEOS) 678 #endif // defined(OS_CHROMEOS)
676 679
677 // The disabled messages in IPC logging. 680 // The disabled messages in IPC logging.
678 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; 681 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages";
679 682
680 // A boolean pref set to true if a Home button to open the Home pages should be 683 // A boolean pref set to true if a Home button to open the Home pages should be
681 // visible on the toolbar. 684 // visible on the toolbar.
682 const char kShowHomeButton[] = "browser.show_home_button"; 685 const char kShowHomeButton[] = "browser.show_home_button";
683 686
684 // A string value which saves short list of recently user selected encodings 687 // A string value which saves short list of recently user selected encodings
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after
1843 const char kRailBreakProportion[] = 1846 const char kRailBreakProportion[] =
1844 "gesture.rail_break_proportion"; 1847 "gesture.rail_break_proportion";
1845 const char kRailStartProportion[] = 1848 const char kRailStartProportion[] =
1846 "gesture.rail_start_proportion"; 1849 "gesture.rail_start_proportion";
1847 #endif 1850 #endif
1848 1851
1849 // Indicates whether the browser is in managed mode. 1852 // Indicates whether the browser is in managed mode.
1850 const char kInManagedMode[] = "managed_mode"; 1853 const char kInManagedMode[] = "managed_mode";
1851 1854
1852 } // namespace prefs 1855 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698