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

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

Issue 3133022: sync: take two for: "Added classes to enable session sync... (Closed)
Patch Set: Created 10 years, 4 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/browser_with_test_window_test.h » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 namespace prefs { 7 namespace prefs {
8 8
9 // *************** PROFILE PREFS *************** 9 // *************** PROFILE PREFS ***************
10 // These are attached to the user profile 10 // These are attached to the user profile
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 // Booleans specifying whether the user has selected to sync the following 876 // Booleans specifying whether the user has selected to sync the following
877 // datatypes. 877 // datatypes.
878 const char kSyncBookmarks[] = "sync.bookmarks"; 878 const char kSyncBookmarks[] = "sync.bookmarks";
879 const char kSyncPasswords[] = "sync.passwords"; 879 const char kSyncPasswords[] = "sync.passwords";
880 const char kSyncPreferences[] = "sync.preferences"; 880 const char kSyncPreferences[] = "sync.preferences";
881 const char kSyncApps[] = "sync.apps"; 881 const char kSyncApps[] = "sync.apps";
882 const char kSyncAutofill[] = "sync.autofill"; 882 const char kSyncAutofill[] = "sync.autofill";
883 const char kSyncThemes[] = "sync.themes"; 883 const char kSyncThemes[] = "sync.themes";
884 const char kSyncTypedUrls[] = "sync.typed_urls"; 884 const char kSyncTypedUrls[] = "sync.typed_urls";
885 const char kSyncExtensions[] = "sync.extensions"; 885 const char kSyncExtensions[] = "sync.extensions";
886 const char kSyncSessions[] = "sync.sessions";
886 887
887 // Boolean used by enterprise configuration management in order to lock down 888 // Boolean used by enterprise configuration management in order to lock down
888 // sync. 889 // sync.
889 const char kSyncManaged[] = "sync.managed"; 890 const char kSyncManaged[] = "sync.managed";
890 891
891 // Boolean to prevent sync from automatically starting up. This is 892 // Boolean to prevent sync from automatically starting up. This is
892 // used when sync is disabled by the user via the privacy dashboard. 893 // used when sync is disabled by the user via the privacy dashboard.
893 const char kSyncSuppressStart[] = "sync.suppress_start"; 894 const char kSyncSuppressStart[] = "sync.suppress_start";
894 895
895 // Create web application shortcut dialog preferences. 896 // Create web application shortcut dialog preferences.
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 // String specifying the proxy server. For a specification of the expected 939 // String specifying the proxy server. For a specification of the expected
939 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). 940 // syntax see net::ProxyConfig::ProxyRules::ParseFromString().
940 const char kProxyServer[] = "proxy.server"; 941 const char kProxyServer[] = "proxy.server";
941 // URL to the proxy .pac file. 942 // URL to the proxy .pac file.
942 const char kProxyPacUrl[] = "proxy.pac_url"; 943 const char kProxyPacUrl[] = "proxy.pac_url";
943 // String containing proxy bypass rules. For a specification of the 944 // String containing proxy bypass rules. For a specification of the
944 // expected syntax see net::ProxyBypassRules::ParseFromString(). 945 // expected syntax see net::ProxyBypassRules::ParseFromString().
945 const char kProxyBypassList[] = "proxy.bypass_list"; 946 const char kProxyBypassList[] = "proxy.bypass_list";
946 947
947 } // namespace prefs 948 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | chrome/test/browser_with_test_window_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698