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

Unified Diff: chrome/browser/search/iframe_source.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/hotword_service_unittest.cc ('k') | chrome/browser/search/iframe_source_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/search/iframe_source.h
diff --git a/chrome/browser/search/iframe_source.h b/chrome/browser/search/iframe_source.h
index c1a9348e7fa78babc2c3b1ef6eb9ba5b48ef5a41..80beefc298f1ef32c5b21fbefd3c11bf29faccf3 100644
--- a/chrome/browser/search/iframe_source.h
+++ b/chrome/browser/search/iframe_source.h
@@ -13,15 +13,13 @@
class IframeSource : public content::URLDataSource {
public:
IframeSource();
- virtual ~IframeSource();
+ ~IframeSource() override;
protected:
// Overridden from content::URLDataSource:
- virtual std::string GetMimeType(
- const std::string& path_and_query) const override;
- virtual bool ShouldDenyXFrameOptions() const override;
- virtual bool ShouldServiceRequest(
- const net::URLRequest* request) const override;
+ std::string GetMimeType(const std::string& path_and_query) const override;
+ bool ShouldDenyXFrameOptions() const override;
+ bool ShouldServiceRequest(const net::URLRequest* request) const override;
// Returns whether this source should serve data for a particular path.
virtual bool ServesPath(const std::string& path) const = 0;
« no previous file with comments | « chrome/browser/search/hotword_service_unittest.cc ('k') | chrome/browser/search/iframe_source_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698