blob: 94b3b4ac8d9677f6ee5923298e1a1eb285866303 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Constants for the names of various preferences, for easier changing.
#ifndef CHROME_COMMON_PREF_NAMES_H_
#define CHROME_COMMON_PREF_NAMES_H_
namespace prefs {
extern const char kAcceptLanguages[];
extern const char kEnableContinuousSpellcheck[];
extern const char kEnableAutoSpellCorrect[];
extern const char kSpellCheckDictionaries[];
extern const char kSpellCheckDictionary[];
extern const char kSpellCheckUseSpellingService[];
} // namespace prefs
#endif // CHROME_COMMON_PREF_NAMES_H_
|