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

Unified Diff: chrome/renderer/searchbox/search_bouncer.h

Issue 663333002: Standardize usage of virtual/override/final in chrome/renderer/ (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/renderer/safe_browsing/phishing_classifier_delegate.h ('k') | chrome/renderer/searchbox/searchbox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/searchbox/search_bouncer.h
diff --git a/chrome/renderer/searchbox/search_bouncer.h b/chrome/renderer/searchbox/search_bouncer.h
index 9a6426851c8c9752ace100b4917277ce2f1206e3..eaef2527d661d010eb6f51602e9a496ff258430e 100644
--- a/chrome/renderer/searchbox/search_bouncer.h
+++ b/chrome/renderer/searchbox/search_bouncer.h
@@ -21,7 +21,7 @@ class Message;
class SearchBouncer : public content::RenderProcessObserver {
public:
SearchBouncer();
- virtual ~SearchBouncer();
+ ~SearchBouncer() override;
// Returns whether a navigation to |url| should bounce back to the browser as
// a potential Instant url. See chrome::ShouldAssignURLToInstantRenderer().
@@ -37,7 +37,7 @@ class SearchBouncer : public content::RenderProcessObserver {
FRIEND_TEST_ALL_PREFIXES(SearchBouncerTest, SetSearchURLs);
// From RenderProcessObserver:
- virtual bool OnControlMessageReceived(const IPC::Message& message) override;
+ bool OnControlMessageReceived(const IPC::Message& message) override;
// URLs to bounce back to the browser.
std::vector<GURL> search_urls_;
« no previous file with comments | « chrome/renderer/safe_browsing/phishing_classifier_delegate.h ('k') | chrome/renderer/searchbox/searchbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698