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

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

Issue 209193002: Remove PlatformFile from spell checker (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert IsEnabled behavior Created 6 years, 9 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 | Annotate | Revision Log
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_SPELLCHECK_H_ 5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_
6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_ 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/files/file.h"
11 #include "base/gtest_prod_util.h" 12 #include "base/gtest_prod_util.h"
12 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
13 #include "base/memory/weak_ptr.h" 14 #include "base/memory/weak_ptr.h"
14 #include "base/platform_file.h"
15 #include "base/strings/string16.h" 15 #include "base/strings/string16.h"
16 #include "chrome/renderer/spellchecker/custom_dictionary_engine.h" 16 #include "chrome/renderer/spellchecker/custom_dictionary_engine.h"
17 #include "chrome/renderer/spellchecker/spellcheck_language.h" 17 #include "chrome/renderer/spellchecker/spellcheck_language.h"
18 #include "content/public/renderer/render_process_observer.h" 18 #include "content/public/renderer/render_process_observer.h"
19 #include "ipc/ipc_platform_file.h" 19 #include "ipc/ipc_platform_file.h"
20 #include "third_party/WebKit/public/platform/WebVector.h" 20 #include "third_party/WebKit/public/platform/WebVector.h"
21 21
22 struct SpellCheckResult; 22 struct SpellCheckResult;
23 23
24 namespace blink { 24 namespace blink {
(...skipping 12 matching lines...) Expand all
37 class SpellcheckRequest; 37 class SpellcheckRequest;
38 enum ResultFilter { 38 enum ResultFilter {
39 DO_NOT_MODIFY = 1, // Do not modify results. 39 DO_NOT_MODIFY = 1, // Do not modify results.
40 USE_NATIVE_CHECKER, // Use native checker to double-check. 40 USE_NATIVE_CHECKER, // Use native checker to double-check.
41 }; 41 };
42 42
43 SpellCheck(); 43 SpellCheck();
44 virtual ~SpellCheck(); 44 virtual ~SpellCheck();
45 45
46 // TODO: Try to move that all to SpellcheckLanguage. 46 // TODO: Try to move that all to SpellcheckLanguage.
47 void Init(base::PlatformFile file, 47 void Init(base::File file,
48 const std::set<std::string>& custom_words, 48 const std::set<std::string>& custom_words,
49 const std::string& language); 49 const std::string& language);
50 50
51 // If there is no dictionary file, then this requests one from the browser 51 // If there is no dictionary file, then this requests one from the browser
52 // and does not block. In this case it returns true. 52 // and does not block. In this case it returns true.
53 // If there is a dictionary file, but Hunspell has not been loaded, then 53 // If there is a dictionary file, but Hunspell has not been loaded, then
54 // this loads Hunspell. 54 // this loads Hunspell.
55 // If Hunspell is already loaded, this does nothing. In both the latter cases 55 // If Hunspell is already loaded, this does nothing. In both the latter cases
56 // it returns false, meaning that it is OK to continue spellchecking. 56 // it returns false, meaning that it is OK to continue spellchecking.
57 bool InitializeIfNeeded(); 57 bool InitializeIfNeeded();
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 // Remember state for auto spell correct. 153 // Remember state for auto spell correct.
154 bool auto_spell_correct_turned_on_; 154 bool auto_spell_correct_turned_on_;
155 155
156 // Remember state for spellchecking. 156 // Remember state for spellchecking.
157 bool spellcheck_enabled_; 157 bool spellcheck_enabled_;
158 158
159 DISALLOW_COPY_AND_ASSIGN(SpellCheck); 159 DISALLOW_COPY_AND_ASSIGN(SpellCheck);
160 }; 160 };
161 161
162 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_ 162 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLCHECK_H_
OLDNEW
« no previous file with comments | « chrome/renderer/spellchecker/hunspell_engine.cc ('k') | chrome/renderer/spellchecker/spellcheck.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698