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

Unified Diff: chrome/browser/search/search_terms_tracker.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/browser/search/most_visited_iframe_source.h ('k') | chrome/browser/search/search_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search/search_terms_tracker.h
diff --git a/chrome/browser/search/search_terms_tracker.h b/chrome/browser/search/search_terms_tracker.h
index 75b3046449679cf750d5b52b124102e930c02db7..d22f28b156ec51e18f4e958eff00863dde84542d 100644
--- a/chrome/browser/search/search_terms_tracker.h
+++ b/chrome/browser/search/search_terms_tracker.h
@@ -28,7 +28,7 @@ namespace chrome {
class SearchTermsTracker : public content::NotificationObserver {
public:
SearchTermsTracker();
- virtual ~SearchTermsTracker();
+ ~SearchTermsTracker() override;
// Returns the current search terms and navigation index of the corresponding
// search results page for the specified WebContents. This function will
@@ -39,9 +39,9 @@ class SearchTermsTracker : public content::NotificationObserver {
int* navigation_index) const;
// content::NotificationObserver
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
private:
struct TabData {
« no previous file with comments | « chrome/browser/search/most_visited_iframe_source.h ('k') | chrome/browser/search/search_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698