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

Side by Side Diff: chrome/renderer/spellchecker/hunspell_engine.h

Issue 2177343002: Componentize spellcheck [2]: move common/ files to component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move message generator to component Created 4 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/spellcheck_result.h ('k') | chrome/renderer/spellchecker/hunspell_engine.cc » ('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) 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 #ifndef CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_ 5 #ifndef CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_
6 #define CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_ 6 #define CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
13 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/common/spellcheck_common.h"
15 #include "chrome/renderer/spellchecker/spelling_engine.h" 14 #include "chrome/renderer/spellchecker/spelling_engine.h"
15 #include "components/spellcheck/common/spellcheck_common.h"
16 16
17 class Hunspell; 17 class Hunspell;
18 18
19 namespace base { 19 namespace base {
20 class MemoryMappedFile; 20 class MemoryMappedFile;
21 } 21 }
22 22
23 class HunspellEngine : public SpellingEngine { 23 class HunspellEngine : public SpellingEngine {
24 public: 24 public:
25 HunspellEngine(); 25 HunspellEngine();
(...skipping 28 matching lines...) Expand all
54 // The value indicates whether we should request a 54 // The value indicates whether we should request a
55 // dictionary from the browser when the render view asks us to check the 55 // dictionary from the browser when the render view asks us to check the
56 // spelling of a word. 56 // spelling of a word.
57 bool initialized_; 57 bool initialized_;
58 58
59 // This flag is true if we have requested dictionary. 59 // This flag is true if we have requested dictionary.
60 bool dictionary_requested_; 60 bool dictionary_requested_;
61 }; 61 };
62 62
63 #endif // CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_ 63 #endif // CHROME_RENDERER_SPELLCHECKER_HUNSPELL_ENGINE_H_
OLDNEW
« no previous file with comments | « chrome/common/spellcheck_result.h ('k') | chrome/renderer/spellchecker/hunspell_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698