Index: components/test_runner/spell_check_client.h |
diff --git a/components/test_runner/spell_check_client.h b/components/test_runner/spell_check_client.h |
index d96afce4d3e2dd607a24dc7c80265972df18f346..04a705eafd0242e3e63b186bb1c4646d2a9bc630 100644 |
--- a/components/test_runner/spell_check_client.h |
+++ b/components/test_runner/spell_check_client.h |
@@ -26,21 +26,21 @@ class SpellCheckClient : public blink::WebSpellCheckClient { |
MockSpellCheck* MockSpellCheckWord() { return &spell_check_; } |
// blink::WebSpellCheckClient implementation. |
- virtual void spellCheck( |
+ void spellCheck( |
const blink::WebString& text, |
int& offset, |
int& length, |
- blink::WebVector<blink::WebString>* optional_suggestions); |
- virtual void checkTextOfParagraph( |
+ blink::WebVector<blink::WebString>* optional_suggestions) override; |
+ void checkTextOfParagraph( |
const blink::WebString& text, |
blink::WebTextCheckingTypeMask mask, |
- blink::WebVector<blink::WebTextCheckingResult>* web_results); |
- virtual void requestCheckingOfText( |
+ blink::WebVector<blink::WebTextCheckingResult>* web_results) override; |
+ void requestCheckingOfText( |
const blink::WebString& text, |
const blink::WebVector<uint32_t>& markers, |
const blink::WebVector<unsigned>& marker_offsets, |
- blink::WebTextCheckingCompletion* completion); |
- virtual blink::WebString autoCorrectWord(const blink::WebString& word); |
+ blink::WebTextCheckingCompletion* completion) override; |
+ blink::WebString autoCorrectWord(const blink::WebString& word) override; |
private: |
void FinishLastTextCheck(); |