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

Unified Diff: content/renderer/android/email_detector.h

Issue 893333004: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting Created 5 years, 10 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 | « content/renderer/android/address_detector.h ('k') | content/renderer/android/phone_number_detector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/android/email_detector.h
diff --git a/content/renderer/android/email_detector.h b/content/renderer/android/email_detector.h
index 97b35c72189dd70e936d255143d4de6c0a35be8a..8d108492b654b62aca9ec37b334dbf85b50398fe 100644
--- a/content/renderer/android/email_detector.h
+++ b/content/renderer/android/email_detector.h
@@ -23,13 +23,13 @@ class CONTENT_EXPORT EmailDetector : public ContentDetector {
friend class EmailDetectorTest;
// Implementation of ContentDetector.
- virtual bool FindContent(const base::string16::const_iterator& begin,
- const base::string16::const_iterator& end,
- size_t* start_pos,
- size_t* end_pos,
- std::string* content_text) override;
- virtual GURL GetIntentURL(const std::string& content_text) override;
- virtual size_t GetMaximumContentLength() override;
+ bool FindContent(const base::string16::const_iterator& begin,
+ const base::string16::const_iterator& end,
+ size_t* start_pos,
+ size_t* end_pos,
+ std::string* content_text) override;
+ GURL GetIntentURL(const std::string& content_text) override;
+ size_t GetMaximumContentLength() override;
DISALLOW_COPY_AND_ASSIGN(EmailDetector);
};
« no previous file with comments | « content/renderer/android/address_detector.h ('k') | content/renderer/android/phone_number_detector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698