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

Side by Side Diff: Source/modules/storage/DOMWindowStorageController.h

Issue 1318793005: [part 2] Make classes and structures in modules fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « Source/modules/storage/DOMWindowStorage.h ('k') | Source/modules/storage/StorageNamespace.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DOMWindowStorageController_h 5 #ifndef DOMWindowStorageController_h
6 #define DOMWindowStorageController_h 6 #define DOMWindowStorageController_h
7 7
8 #include "core/dom/Document.h" 8 #include "core/dom/Document.h"
9 #include "core/frame/DOMWindowLifecycleObserver.h" 9 #include "core/frame/DOMWindowLifecycleObserver.h"
10 #include "modules/ModulesExport.h" 10 #include "modules/ModulesExport.h"
11 #include "platform/Supplementable.h" 11 #include "platform/Supplementable.h"
12 #include "platform/heap/Handle.h" 12 #include "platform/heap/Handle.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class Document; 16 class Document;
17 class Event; 17 class Event;
18 18
19 class MODULES_EXPORT DOMWindowStorageController final : public NoBaseWillBeGarba geCollected<DOMWindowStorageController>, public WillBeHeapSupplement<Document>, public DOMWindowLifecycleObserver { 19 class MODULES_EXPORT DOMWindowStorageController final : public NoBaseWillBeGarba geCollected<DOMWindowStorageController>, public WillBeHeapSupplement<Document>, public DOMWindowLifecycleObserver {
20 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowStorageController); 20 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowStorageController);
21 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowStorageController) ; 21 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(DOMWindowStorageController) ;
22 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(DOMWindowStorageController);
22 public: 23 public:
23 DECLARE_VIRTUAL_TRACE(); 24 DECLARE_VIRTUAL_TRACE();
24 25
25 static const char* supplementName(); 26 static const char* supplementName();
26 static DOMWindowStorageController& from(Document&); 27 static DOMWindowStorageController& from(Document&);
27 28
28 // Inherited from DOMWindowLifecycleObserver 29 // Inherited from DOMWindowLifecycleObserver
29 void didAddEventListener(LocalDOMWindow*, const AtomicString&) override; 30 void didAddEventListener(LocalDOMWindow*, const AtomicString&) override;
30 31
31 protected: 32 protected:
32 explicit DOMWindowStorageController(Document&); 33 explicit DOMWindowStorageController(Document&);
33 34
34 private: 35 private:
35 Document& document() const { return *m_document; } 36 Document& document() const { return *m_document; }
36 37
37 RawPtrWillBeMember<Document> m_document; 38 RawPtrWillBeMember<Document> m_document;
38 }; 39 };
39 40
40 } // namespace blink 41 } // namespace blink
41 42
42 #endif // DOMWindowStorageController_h 43 #endif // DOMWindowStorageController_h
OLDNEW
« no previous file with comments | « Source/modules/storage/DOMWindowStorage.h ('k') | Source/modules/storage/StorageNamespace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698