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

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

Issue 158133003: Move quota module to oilpan (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove conditional support for GCed-supplements Created 6 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 14 matching lines...) Expand all
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef NavigatorStorageQuota_h 31 #ifndef NavigatorStorageQuota_h
32 #define NavigatorStorageQuota_h 32 #define NavigatorStorageQuota_h
33 33
34 #include "core/frame/DOMWindowProperty.h" 34 #include "core/frame/DOMWindowProperty.h"
35 #include "heap/Handle.h"
36 #include "modules/quota/DeprecatedStorageQuota.h"
35 #include "platform/Supplementable.h" 37 #include "platform/Supplementable.h"
36 38
37 namespace WebCore { 39 namespace WebCore {
38 40
39 class DeprecatedStorageQuota;
40 class Frame; 41 class Frame;
41 class Navigator; 42 class Navigator;
42 class StorageQuota; 43 class StorageQuota;
43 44
44 class NavigatorStorageQuota FINAL : public Supplement<Navigator>, public DOMWind owProperty { 45 class NavigatorStorageQuota FINAL : public Supplement<Navigator>, public DOMWind owProperty {
45 public: 46 public:
46 virtual ~NavigatorStorageQuota(); 47 virtual ~NavigatorStorageQuota() { }
tkent 2014/02/10 08:27:40 Ditto.
sof 2014/02/10 09:07:19 Reverted.
47 static NavigatorStorageQuota* from(Navigator*); 48 static NavigatorStorageQuota* from(Navigator*);
48 49
49 static StorageQuota* storageQuota(Navigator*); 50 static StorageQuota* storageQuota(Navigator*);
50 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator*); 51 static DeprecatedStorageQuota* webkitTemporaryStorage(Navigator*);
51 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator*); 52 static DeprecatedStorageQuota* webkitPersistentStorage(Navigator*);
52 53
53 StorageQuota* storageQuota() const; 54 StorageQuota* storageQuota() const;
54 DeprecatedStorageQuota* webkitTemporaryStorage() const; 55 DeprecatedStorageQuota* webkitTemporaryStorage() const;
55 DeprecatedStorageQuota* webkitPersistentStorage() const; 56 DeprecatedStorageQuota* webkitPersistentStorage() const;
56 57
57 private: 58 private:
58 explicit NavigatorStorageQuota(Frame*); 59 explicit NavigatorStorageQuota(Frame*);
59 static const char* supplementName(); 60 static const char* supplementName();
60 61
61 mutable RefPtr<StorageQuota> m_storageQuota; 62 mutable RefPtrWillBePersistent<StorageQuota> m_storageQuota;
62 mutable RefPtr<DeprecatedStorageQuota> m_temporaryStorage; 63 mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_temporaryStorage;
63 mutable RefPtr<DeprecatedStorageQuota> m_persistentStorage; 64 mutable RefPtrWillBePersistent<DeprecatedStorageQuota> m_persistentStorage;
64 }; 65 };
65 66
66 } // namespace WebCore 67 } // namespace WebCore
67 68
68 #endif // NavigatorStorageQuota_h 69 #endif // NavigatorStorageQuota_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698