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

Unified Diff: Source/modules/serviceworkers/Body.h

Issue 630403002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules/serviceworkers (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 | « no previous file | Source/modules/serviceworkers/Cache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Body.h
diff --git a/Source/modules/serviceworkers/Body.h b/Source/modules/serviceworkers/Body.h
index 782ba2cde41631f8a897b618c6389b0bce2121bb..6aa5d1c39fcc6a74998ddb962447c16312105007 100644
--- a/Source/modules/serviceworkers/Body.h
+++ b/Source/modules/serviceworkers/Body.h
@@ -46,8 +46,8 @@ public:
bool bodyUsed() const;
// ActiveDOMObject override.
- virtual void stop() OVERRIDE;
- virtual bool hasPendingActivity() const OVERRIDE;
+ virtual void stop() override;
+ virtual bool hasPendingActivity() const override;
virtual void trace(Visitor*) { }
@@ -64,10 +64,10 @@ private:
void resolveJSON();
// FileReaderLoaderClient functions.
- virtual void didStartLoading() OVERRIDE;
- virtual void didReceiveData() OVERRIDE;
- virtual void didFinishLoading() OVERRIDE;
- virtual void didFail(FileError::ErrorCode) OVERRIDE;
+ virtual void didStartLoading() override;
+ virtual void didReceiveData() override;
+ virtual void didFinishLoading() override;
+ virtual void didFail(FileError::ErrorCode) override;
virtual PassRefPtr<BlobDataHandle> blobDataHandle() = 0;
« no previous file with comments | « no previous file | Source/modules/serviceworkers/Cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698