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

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

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/renderer/security_filter_peer.h ('k') | chrome/renderer/spellchecker/hunspell_engine.h » ('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_NSSPELLCHECKER_ENGINE_H_ 5 #ifndef CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_
6 #define CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_ 6 #define CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/renderer/spellchecker/spelling_engine.h" 9 #include "chrome/renderer/spellchecker/spelling_engine.h"
10 10
11 class CocoaSpellingEngine : public SpellingEngine { 11 class CocoaSpellingEngine : public SpellingEngine {
12 public: 12 public:
13 virtual void Init(base::File bdict_file) OVERRIDE; 13 virtual void Init(base::File bdict_file) override;
14 virtual bool InitializeIfNeeded() OVERRIDE; 14 virtual bool InitializeIfNeeded() override;
15 virtual bool IsEnabled() OVERRIDE; 15 virtual bool IsEnabled() override;
16 virtual bool CheckSpelling(const base::string16& word_to_check, 16 virtual bool CheckSpelling(const base::string16& word_to_check,
17 int tag) OVERRIDE; 17 int tag) override;
18 virtual void FillSuggestionList( 18 virtual void FillSuggestionList(
19 const base::string16& wrong_word, 19 const base::string16& wrong_word,
20 std::vector<base::string16>* optional_suggestions) OVERRIDE; 20 std::vector<base::string16>* optional_suggestions) override;
21 }; 21 };
22 22
23 #endif // CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_ 23 #endif // CHROME_RENDERER_SPELLCHECKER_NSSPELLCHECKER_ENGINE_H_
24 24
OLDNEW
« no previous file with comments | « chrome/renderer/security_filter_peer.h ('k') | chrome/renderer/spellchecker/hunspell_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698