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

Unified Diff: Source/web/AssociatedURLLoader.h

Issue 634893002: Replace OVERRIDE and FINAL with override and final in WebKit/public (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/web/AssociatedURLLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/AssociatedURLLoader.h
diff --git a/Source/web/AssociatedURLLoader.h b/Source/web/AssociatedURLLoader.h
index c7032a34ce53c31174208be21e0ea1dd1ffc2afa..c8158953546d3bd37a33fc08a91fe503f28f4ebd 100644
--- a/Source/web/AssociatedURLLoader.h
+++ b/Source/web/AssociatedURLLoader.h
@@ -43,17 +43,17 @@ class DocumentThreadableLoader;
class WebLocalFrameImpl;
// This class is used to implement WebFrame::createAssociatedURLLoader.
-class AssociatedURLLoader FINAL : public WebURLLoader {
+class AssociatedURLLoader final : public WebURLLoader {
WTF_MAKE_NONCOPYABLE(AssociatedURLLoader);
public:
AssociatedURLLoader(PassRefPtrWillBeRawPtr<WebLocalFrameImpl>, const WebURLLoaderOptions&);
~AssociatedURLLoader();
// WebURLLoader methods:
- virtual void loadSynchronously(const WebURLRequest&, WebURLResponse&, WebURLError&, WebData&) OVERRIDE;
- virtual void loadAsynchronously(const WebURLRequest&, WebURLLoaderClient*) OVERRIDE;
- virtual void cancel() OVERRIDE;
- virtual void setDefersLoading(bool) OVERRIDE;
+ virtual void loadSynchronously(const WebURLRequest&, WebURLResponse&, WebURLError&, WebData&) override;
+ virtual void loadAsynchronously(const WebURLRequest&, WebURLLoaderClient*) override;
+ virtual void cancel() override;
+ virtual void setDefersLoading(bool) override;
private:
« no previous file with comments | « no previous file | Source/web/AssociatedURLLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698