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

Unified Diff: chrome/renderer/spellchecker/spellcheck.cc

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.h ('k') | chrome/renderer/spellchecker/spellcheck_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/spellchecker/spellcheck.cc
diff --git a/chrome/renderer/spellchecker/spellcheck.cc b/chrome/renderer/spellchecker/spellcheck.cc
index f1de849dba5d0655d2e72d6636876d88218792b4..93a5b089f32e9d797a3a687d005424d8c8c363e3 100644
--- a/chrome/renderer/spellchecker/spellcheck.cc
+++ b/chrome/renderer/spellchecker/spellcheck.cc
@@ -31,7 +31,7 @@ namespace {
class UpdateSpellcheckEnabled : public content::RenderViewVisitor {
public:
explicit UpdateSpellcheckEnabled(bool enabled) : enabled_(enabled) {}
- virtual bool Visit(content::RenderView* render_view) OVERRIDE;
+ virtual bool Visit(content::RenderView* render_view) override;
private:
bool enabled_; // New spellcheck-enabled state.
@@ -50,7 +50,7 @@ class DocumentMarkersCollector : public content::RenderViewVisitor {
DocumentMarkersCollector() {}
virtual ~DocumentMarkersCollector() {}
const std::vector<uint32>& markers() const { return markers_; }
- virtual bool Visit(content::RenderView* render_view) OVERRIDE;
+ virtual bool Visit(content::RenderView* render_view) override;
private:
std::vector<uint32> markers_;
@@ -71,8 +71,8 @@ bool DocumentMarkersCollector::Visit(content::RenderView* render_view) {
class DocumentMarkersRemover : public content::RenderViewVisitor {
public:
explicit DocumentMarkersRemover(const std::vector<std::string>& words);
- virtual ~DocumentMarkersRemover() OVERRIDE {}
- virtual bool Visit(content::RenderView* render_view) OVERRIDE;
+ virtual ~DocumentMarkersRemover() override {}
+ virtual bool Visit(content::RenderView* render_view) override;
private:
WebVector<WebString> words_;
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.h ('k') | chrome/renderer/spellchecker/spellcheck_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698