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

Side by Side Diff: Source/modules/quota/StorageQuotaCallbacksImpl.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 30 matching lines...) Expand all
41 namespace blink { 41 namespace blink {
42 42
43 class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallba cks { 43 class MODULES_EXPORT StorageQuotaCallbacksImpl final : public StorageQuotaCallba cks {
44 WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl); 44 WTF_MAKE_NONCOPYABLE(StorageQuotaCallbacksImpl);
45 public: 45 public:
46 static StorageQuotaCallbacksImpl* create(PassRefPtrWillBeRawPtr<ScriptPromis eResolver> resolver) 46 static StorageQuotaCallbacksImpl* create(PassRefPtrWillBeRawPtr<ScriptPromis eResolver> resolver)
47 { 47 {
48 return new StorageQuotaCallbacksImpl(resolver); 48 return new StorageQuotaCallbacksImpl(resolver);
49 } 49 }
50 50
51 virtual ~StorageQuotaCallbacksImpl(); 51 ~StorageQuotaCallbacksImpl() override;
52 52
53 virtual void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, u nsigned long long quotaInBytes) override; 53 void didQueryStorageUsageAndQuota(unsigned long long usageInBytes, unsigned long long quotaInBytes) override;
54 virtual void didGrantStorageQuota(unsigned long long usageInBytes, unsigned long long grantedQuotaInBytes) override; 54 void didGrantStorageQuota(unsigned long long usageInBytes, unsigned long lon g grantedQuotaInBytes) override;
55 virtual void didFail(WebStorageQuotaError) override; 55 void didFail(WebStorageQuotaError) override;
56 56
57 DECLARE_VIRTUAL_TRACE(); 57 DECLARE_VIRTUAL_TRACE();
58 58
59 private: 59 private:
60 explicit StorageQuotaCallbacksImpl(PassRefPtrWillBeRawPtr<ScriptPromiseResol ver>); 60 explicit StorageQuotaCallbacksImpl(PassRefPtrWillBeRawPtr<ScriptPromiseResol ver>);
61 61
62 RefPtrWillBeMember<ScriptPromiseResolver> m_resolver; 62 RefPtrWillBeMember<ScriptPromiseResolver> m_resolver;
63 }; 63 };
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // StorageQuotaCallbacksImpl_h 67 #endif // StorageQuotaCallbacksImpl_h
OLDNEW
« no previous file with comments | « Source/modules/quota/StorageErrorCallback.h ('k') | Source/modules/screen_orientation/LockOrientationCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698