OLD | NEW |
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 24 matching lines...) Expand all Loading... |
35 #include "core/workers/WorkerNavigator.h" | 35 #include "core/workers/WorkerNavigator.h" |
36 #include "heap/Handle.h" | 36 #include "heap/Handle.h" |
37 #include "modules/quota/DeprecatedStorageQuota.h" | 37 #include "modules/quota/DeprecatedStorageQuota.h" |
38 #include "platform/Supplementable.h" | 38 #include "platform/Supplementable.h" |
39 | 39 |
40 namespace WebCore { | 40 namespace WebCore { |
41 | 41 |
42 class WorkerNavigatorStorageQuota FINAL : public NoBaseWillBeGarbageCollected<Wo
rkerNavigatorStorageQuota>, public WillBeHeapSupplement<WorkerNavigator> { | 42 class WorkerNavigatorStorageQuota FINAL : public NoBaseWillBeGarbageCollected<Wo
rkerNavigatorStorageQuota>, public WillBeHeapSupplement<WorkerNavigator> { |
43 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerNavigatorStorageQuota); | 43 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkerNavigatorStorageQuota); |
44 public: | 44 public: |
45 virtual ~WorkerNavigatorStorageQuota(); | |
46 static WorkerNavigatorStorageQuota& from(WorkerNavigator&); | 45 static WorkerNavigatorStorageQuota& from(WorkerNavigator&); |
47 | 46 |
48 static DeprecatedStorageQuota* webkitTemporaryStorage(WorkerNavigator&); | 47 static DeprecatedStorageQuota* webkitTemporaryStorage(WorkerNavigator&); |
49 static DeprecatedStorageQuota* webkitPersistentStorage(WorkerNavigator&); | 48 static DeprecatedStorageQuota* webkitPersistentStorage(WorkerNavigator&); |
50 DeprecatedStorageQuota* webkitTemporaryStorage() const; | 49 DeprecatedStorageQuota* webkitTemporaryStorage() const; |
51 DeprecatedStorageQuota* webkitPersistentStorage() const; | 50 DeprecatedStorageQuota* webkitPersistentStorage() const; |
52 | 51 |
53 virtual void trace(Visitor*); | 52 virtual void trace(Visitor*); |
54 | 53 |
55 private: | 54 private: |
56 explicit WorkerNavigatorStorageQuota(); | 55 explicit WorkerNavigatorStorageQuota(); |
57 static const char* supplementName(); | 56 static const char* supplementName(); |
58 | 57 |
59 mutable RefPtrWillBeMember<DeprecatedStorageQuota> m_temporaryStorage; | 58 mutable RefPtrWillBeMember<DeprecatedStorageQuota> m_temporaryStorage; |
60 mutable RefPtrWillBeMember<DeprecatedStorageQuota> m_persistentStorage; | 59 mutable RefPtrWillBeMember<DeprecatedStorageQuota> m_persistentStorage; |
61 }; | 60 }; |
62 | 61 |
63 } // namespace WebCore | 62 } // namespace WebCore |
64 | 63 |
65 #endif // WorkerNavigatorStorageQuota_h | 64 #endif // WorkerNavigatorStorageQuota_h |
OLD | NEW |