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

Unified Diff: Source/web/AssociatedURLLoader.h

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 11 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/web/ApplicationCacheHostInternal.h ('k') | 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 2f0c92ae7a66bd7a08268fa6d1719b39afa0fca8..ac50eb92c24c6a8134f0d0fbf288040393f850cb 100644
--- a/Source/web/AssociatedURLLoader.h
+++ b/Source/web/AssociatedURLLoader.h
@@ -44,17 +44,17 @@ namespace blink {
class WebFrameImpl;
// This class is used to implement WebFrame::createAssociatedURLLoader.
-class AssociatedURLLoader : public WebURLLoader {
+class AssociatedURLLoader FINAL : public WebURLLoader {
WTF_MAKE_NONCOPYABLE(AssociatedURLLoader);
public:
AssociatedURLLoader(PassRefPtr<WebFrameImpl>, const WebURLLoaderOptions&);
~AssociatedURLLoader();
// WebURLLoader methods:
- virtual void loadSynchronously(const WebURLRequest&, WebURLResponse&, WebURLError&, WebData&);
- virtual void loadAsynchronously(const WebURLRequest&, WebURLLoaderClient*);
- virtual void cancel();
- virtual void setDefersLoading(bool);
+ 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 | « Source/web/ApplicationCacheHostInternal.h ('k') | Source/web/AssociatedURLLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698