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

Unified Diff: Source/core/loader/DocumentLoader.h

Issue 638503003: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/loader (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.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 | « Source/core/loader/BeaconLoader.h ('k') | Source/core/loader/DocumentThreadableLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/DocumentLoader.h
diff --git a/Source/core/loader/DocumentLoader.h b/Source/core/loader/DocumentLoader.h
index ea6ef676cdacc5bd193bc8984f1cf98dfe17d06b..14319394ea93e1657ad653e924c4cb6cd3343d3c 100644
--- a/Source/core/loader/DocumentLoader.h
+++ b/Source/core/loader/DocumentLoader.h
@@ -157,11 +157,11 @@ namespace blink {
void finishedLoading(double finishTime);
void mainReceivedError(const ResourceError&);
void cancelLoadAfterXFrameOptionsOrCSPDenied(const ResourceResponse&);
- virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceResponse&) OVERRIDE FINAL;
- virtual void updateRequest(Resource*, const ResourceRequest&) OVERRIDE FINAL;
- virtual void responseReceived(Resource*, const ResourceResponse&) OVERRIDE FINAL;
- virtual void dataReceived(Resource*, const char* data, unsigned length) OVERRIDE FINAL;
- virtual void notifyFinished(Resource*) OVERRIDE FINAL;
+ virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceResponse&) override final;
+ virtual void updateRequest(Resource*, const ResourceRequest&) override final;
+ virtual void responseReceived(Resource*, const ResourceResponse&) override final;
+ virtual void dataReceived(Resource*, const char* data, unsigned length) override final;
+ virtual void notifyFinished(Resource*) override final;
bool maybeLoadEmpty();
« no previous file with comments | « Source/core/loader/BeaconLoader.h ('k') | Source/core/loader/DocumentThreadableLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698