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

Unified Diff: components/dom_distiller/content/dom_distiller_viewer_source.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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
Index: components/dom_distiller/content/dom_distiller_viewer_source.h
diff --git a/components/dom_distiller/content/dom_distiller_viewer_source.h b/components/dom_distiller/content/dom_distiller_viewer_source.h
index 3f579a18a4f972502cb0deb49313667507c81865..d9eaf9fb7247b0d85017dd1d6eaf5fe112a0e01e 100644
--- a/components/dom_distiller/content/dom_distiller_viewer_source.h
+++ b/components/dom_distiller/content/dom_distiller_viewer_source.h
@@ -28,18 +28,18 @@ class DomDistillerViewerSource : public content::URLDataSource {
class RequestViewerHandle;
// Overridden from content::URLDataSource:
- virtual std::string GetSource() const OVERRIDE;
+ virtual std::string GetSource() const override;
virtual void StartDataRequest(
const std::string& path,
int render_process_id,
int render_frame_id,
- const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
- virtual std::string GetMimeType(const std::string& path) const OVERRIDE;
+ const content::URLDataSource::GotDataCallback& callback) override;
+ virtual std::string GetMimeType(const std::string& path) const override;
virtual bool ShouldServiceRequest(
- const net::URLRequest* request) const OVERRIDE;
+ const net::URLRequest* request) const override;
virtual void WillServiceRequest(const net::URLRequest* request,
- std::string* path) const OVERRIDE;
- virtual std::string GetContentSecurityPolicyObjectSrc() const OVERRIDE;
+ std::string* path) const override;
+ virtual std::string GetContentSecurityPolicyObjectSrc() const override;
private:
friend class DomDistillerViewerSourceTest;

Powered by Google App Engine
This is Rietveld 408576698