blob: e338ef0794c92d73d9ce7dcc4c1813f9c4c4c9e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SPELLCHECK_BROWSER_PREF_NAMES_H_
#define COMPONENTS_SPELLCHECK_BROWSER_PREF_NAMES_H_
namespace spellcheck {
namespace prefs {
extern const char kSpellCheckEnable[];
extern const char kSpellCheckDictionaries[];
extern const char kSpellCheckForcedDictionaries[];
extern const char kSpellCheckBlocklistedDictionaries[];
extern const char kSpellCheckDictionary[];
extern const char kSpellCheckUseSpellingService[];
} // namespace prefs
} // namespace spellcheck
#endif // COMPONENTS_SPELLCHECK_BROWSER_PREF_NAMES_H_
|