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

Side by Side Diff: components/spellcheck/renderer/spelling_engine.h

Issue 2159283003: [WIP][DO NOT LAND] Componentize spellcheck Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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_SPELLING_ENGINE_H_ 5 #ifndef CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_
6 #define CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_ 6 #define CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 14 matching lines...) Expand all
25 virtual bool InitializeIfNeeded() = 0; 25 virtual bool InitializeIfNeeded() = 0;
26 virtual bool IsEnabled() = 0; 26 virtual bool IsEnabled() = 0;
27 virtual bool CheckSpelling(const base::string16& word_to_check, int tag) = 0; 27 virtual bool CheckSpelling(const base::string16& word_to_check, int tag) = 0;
28 virtual void FillSuggestionList( 28 virtual void FillSuggestionList(
29 const base::string16& wrong_word, 29 const base::string16& wrong_word,
30 std::vector<base::string16>* optional_suggestions) = 0; 30 std::vector<base::string16>* optional_suggestions) = 0;
31 }; 31 };
32 32
33 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_ 33 #endif // CHROME_RENDERER_SPELLCHECKER_SPELLING_ENGINE_H_
34 34
OLDNEW
« no previous file with comments | « components/spellcheck/renderer/spellcheck_worditerator_unittest.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698