blob: fc0c7a3e9d7182deae0f7d48ea998c8c43dc078d [file] [log] [blame]
droger4b2901c2015-01-08 16:25:331// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef IOS_CHROME_BROWSER_PREF_NAMES_H_
6#define IOS_CHROME_BROWSER_PREF_NAMES_H_
7
8namespace ios {
9namespace prefs {
10
11// Preferences in ios::prefs:: are temporary shared with desktop Chrome.
12// Non-shared preferences should be in the prefs:: namespace (no ios::).
13extern const char kAcceptLanguages[];
sdefresne5151eee2015-06-26 14:05:4414extern const char kSavingBrowserHistoryDisabled[];
droger4b2901c2015-01-08 16:25:3315
16} // namespace prefs
17} // namespace ios
18
drogerf83b91262015-03-05 19:45:1919namespace prefs {
20
sdefresne81e36682015-05-18 13:55:3621extern const char kContextualSearchEnabled[];
drogerf83b91262015-03-05 19:45:1922extern const char kIosBookmarkFolderDefault[];
23extern const char kIosBookmarkPromoAlreadySeen[];
shreyasv6a6293f32015-05-29 08:02:3124extern const char kOTRStashStatePathSystemBackupExcluded[];
sdefresne81e36682015-05-18 13:55:3625extern const char kIosHandoffToOtherDevices[];
drogerb548bee82015-07-08 15:29:2726extern const char kLastSessionExitedCleanly[];
sdefresne81e36682015-05-18 13:55:3627extern const char kMetricsReportingWifiOnly[];
28extern const char kNetworkPredictionWifiOnly[];
29extern const char kNtpShownBookmarksFolder[];
drogerf83b91262015-03-05 19:45:1930extern const char kPaymentsPreferredUserId[];
drogera7b5e662015-04-08 11:59:4531extern const char kShowMemoryDebuggingTools[];
drogerf83b91262015-03-05 19:45:1932
sdefresne81e36682015-05-18 13:55:3633extern const char kVoiceSearchLocale[];
34extern const char kVoiceSearchTTS[];
35
36extern const char kSigninLastAccounts[];
37extern const char kSigninSharedAuthenticationUserId[];
38extern const char kSigninShouldPromptForSigninAgain[];
39
40extern const char kOmniboxGeolocationAuthorizationState[];
41extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[];
42
drogerf83b91262015-03-05 19:45:1943} // namespace prefs
44
droger4b2901c2015-01-08 16:25:3345#endif // IOS_CHROME_BROWSER_PREF_NAMES_H_