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

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

Issue 11445002: Sync user's custom spellcheck dictionary (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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
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 1658 matching lines...) Expand 10 before | Expand all | Expand 10 after
1669 const char kSyncApps[] = "sync.apps"; 1669 const char kSyncApps[] = "sync.apps";
1670 const char kSyncAutofill[] = "sync.autofill"; 1670 const char kSyncAutofill[] = "sync.autofill";
1671 const char kSyncAutofillProfile[] = "sync.autofill_profile"; 1671 const char kSyncAutofillProfile[] = "sync.autofill_profile";
1672 const char kSyncThemes[] = "sync.themes"; 1672 const char kSyncThemes[] = "sync.themes";
1673 const char kSyncTypedUrls[] = "sync.typed_urls"; 1673 const char kSyncTypedUrls[] = "sync.typed_urls";
1674 const char kSyncExtensions[] = "sync.extensions"; 1674 const char kSyncExtensions[] = "sync.extensions";
1675 const char kSyncExtensionSettings[] = "sync.extension_settings"; 1675 const char kSyncExtensionSettings[] = "sync.extension_settings";
1676 const char kSyncSearchEngines[] = "sync.search_engines"; 1676 const char kSyncSearchEngines[] = "sync.search_engines";
1677 const char kSyncSessions[] = "sync.sessions"; 1677 const char kSyncSessions[] = "sync.sessions";
1678 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; 1678 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
1679 const char kSyncDictionary[] = "sync.dictionary";
1679 1680
1680 // Boolean used by enterprise configuration management in order to lock down 1681 // Boolean used by enterprise configuration management in order to lock down
1681 // sync. 1682 // sync.
1682 const char kSyncManaged[] = "sync.managed"; 1683 const char kSyncManaged[] = "sync.managed";
1683 1684
1684 // Boolean to prevent sync from automatically starting up. This is 1685 // Boolean to prevent sync from automatically starting up. This is
1685 // used when sync is disabled by the user via the privacy dashboard. 1686 // used when sync is disabled by the user via the privacy dashboard.
1686 const char kSyncSuppressStart[] = "sync.suppress_start"; 1687 const char kSyncSuppressStart[] = "sync.suppress_start";
1687 1688
1688 // List of the currently acknowledged set of sync types, used to figure out 1689 // List of the currently acknowledged set of sync types, used to figure out
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
2203 // 64-bit serialization of the time last policy usage statistics were collected 2204 // 64-bit serialization of the time last policy usage statistics were collected
2204 // by UMA_HISTOGRAM_ENUMERATION. 2205 // by UMA_HISTOGRAM_ENUMERATION.
2205 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; 2206 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update";
2206 2207
2207 #if defined(OS_CHROMEOS) 2208 #if defined(OS_CHROMEOS)
2208 // The RLZ brand code, if enabled. 2209 // The RLZ brand code, if enabled.
2209 const char kRLZBrand[] = "rlz.brand"; 2210 const char kRLZBrand[] = "rlz.brand";
2210 #endif 2211 #endif
2211 2212
2212 } // namespace prefs 2213 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698