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

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

Issue 2198143002: Componentize spellcheck [3]: move renderer/ files to component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_SPELLCHECKER_PLATFORM_SPELLING_ENGINE_H_
6 #define CHROME_RENDERER_SPELLCHECKER_PLATFORM_SPELLING_ENGINE_H_
7
8 #include "base/compiler_specific.h"
9 #include "chrome/renderer/spellchecker/spelling_engine.h"
10
11 class PlatformSpellingEngine : public SpellingEngine {
12 public:
13 void Init(base::File bdict_file) override;
14 bool InitializeIfNeeded() override;
15 bool IsEnabled() override;
16 bool CheckSpelling(const base::string16& word_to_check, int tag) override;
17 void FillSuggestionList(
18 const base::string16& wrong_word,
19 std::vector<base::string16>* optional_suggestions) override;
20 };
21
22 #endif // CHROME_RENDERER_SPELLCHECKER_PLATFORM_SPELLING_ENGINE_H_
23
OLDNEW
« no previous file with comments | « chrome/renderer/spellchecker/hunspell_engine.cc ('k') | chrome/renderer/spellchecker/platform_spelling_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698