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

Unified Diff: chrome/renderer/spellchecker/spellcheck_provider.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.cc ('k') | chrome/renderer/spellchecker/spellcheck_provider_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/spellchecker/spellcheck_provider.h
diff --git a/chrome/renderer/spellchecker/spellcheck_provider.h b/chrome/renderer/spellchecker/spellcheck_provider.h
index 2ea2d475ef6934c126a88d52cb97afecd157adba..2b3ca2853db06b06e29742d637762f38fb4511a0 100644
--- a/chrome/renderer/spellchecker/spellcheck_provider.h
+++ b/chrome/renderer/spellchecker/spellcheck_provider.h
@@ -55,8 +55,8 @@ class SpellCheckProvider
void EnableSpellcheck(bool enabled);
// RenderViewObserver implementation.
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- virtual void FocusedNodeChanged(const blink::WebNode& node) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
+ virtual void FocusedNodeChanged(const blink::WebNode& node) override;
private:
friend class TestingSpellCheckProvider;
@@ -72,24 +72,24 @@ class SpellCheckProvider
const blink::WebString& text,
int& offset,
int& length,
- blink::WebVector<blink::WebString>* optional_suggestions) OVERRIDE;
+ blink::WebVector<blink::WebString>* optional_suggestions) override;
virtual void checkTextOfParagraph(
const blink::WebString& text,
blink::WebTextCheckingTypeMask mask,
- blink::WebVector<blink::WebTextCheckingResult>* results) OVERRIDE;
+ blink::WebVector<blink::WebTextCheckingResult>* results) override;
virtual void requestCheckingOfText(
const blink::WebString& text,
const blink::WebVector<uint32>& markers,
const blink::WebVector<unsigned>& marker_offsets,
- blink::WebTextCheckingCompletion* completion) OVERRIDE;
+ blink::WebTextCheckingCompletion* completion) override;
virtual blink::WebString autoCorrectWord(
- const blink::WebString& misspelled_word) OVERRIDE;
- virtual void showSpellingUI(bool show) OVERRIDE;
- virtual bool isShowingSpellingUI() OVERRIDE;
+ const blink::WebString& misspelled_word) override;
+ virtual void showSpellingUI(bool show) override;
+ virtual bool isShowingSpellingUI() override;
virtual void updateSpellingUIWithMisspelledWord(
- const blink::WebString& word) OVERRIDE;
+ const blink::WebString& word) override;
#if !defined(OS_MACOSX)
void OnRespondSpellingService(
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.cc ('k') | chrome/renderer/spellchecker/spellcheck_provider_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698