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

Unified Diff: Source/modules/filesystem/SyncCallbackHelper.h

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ 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/modules/filesystem/LocalFileSystem.h ('k') | Source/modules/gamepad/NavigatorGamepad.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/SyncCallbackHelper.h
diff --git a/Source/modules/filesystem/SyncCallbackHelper.h b/Source/modules/filesystem/SyncCallbackHelper.h
index ad39e1c636c7705971dd67bd2a153d32a9866fb4..1d91f4023b139cfaa2d12e893dedb93325858c00 100644
--- a/Source/modules/filesystem/SyncCallbackHelper.h
+++ b/Source/modules/filesystem/SyncCallbackHelper.h
@@ -104,7 +104,7 @@ public:
PassOwnPtr<ErrorCallback> errorCallback() { return ErrorCallbackImpl::create(this); }
private:
- class SuccessCallbackImpl : public SuccessCallback {
+ class SuccessCallbackImpl FINAL : public SuccessCallback {
public:
static PassOwnPtr<SuccessCallbackImpl> create(HelperType* helper)
{
@@ -129,14 +129,14 @@ private:
HelperType* m_helper;
};
- class ErrorCallbackImpl : public ErrorCallback {
+ class ErrorCallbackImpl FINAL : public ErrorCallback {
public:
static PassOwnPtr<ErrorCallbackImpl> create(HelperType* helper)
{
return adoptPtr(new ErrorCallbackImpl(helper));
}
- virtual void handleEvent(FileError* error)
+ virtual void handleEvent(FileError* error) OVERRIDE
{
ASSERT(error);
m_helper->setError(error->code());
« no previous file with comments | « Source/modules/filesystem/LocalFileSystem.h ('k') | Source/modules/gamepad/NavigatorGamepad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698