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

Unified Diff: Source/core/storage/StorageNamespaceController.h

Issue 860423003: Oilpan: fix build after r188764. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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 | « no previous file | Source/core/storage/StorageNamespaceController.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/StorageNamespaceController.h
diff --git a/Source/core/storage/StorageNamespaceController.h b/Source/core/storage/StorageNamespaceController.h
index 91fdc986b638446f86e6c1e7b07284c939224ecb..12480e1c1d4e689ed8dc9a0319a431da524bf03a 100644
--- a/Source/core/storage/StorageNamespaceController.h
+++ b/Source/core/storage/StorageNamespaceController.h
@@ -14,10 +14,11 @@ namespace blink {
class StorageClient;
class StorageNamespace;
-class StorageNamespaceController final : public NoBaseWillBeGarbageCollected<StorageNamespaceController>, public WillBeHeapSupplement<Page> {
+class StorageNamespaceController final : public NoBaseWillBeGarbageCollectedFinalized<StorageNamespaceController>, public WillBeHeapSupplement<Page> {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(StorageNamespaceController);
public:
StorageNamespace* sessionStorage(bool optionalCreate = true);
+ ~StorageNamespaceController();
static void provideStorageNamespaceTo(Page&, StorageClient*);
static StorageNamespaceController* from(Page* page) { return static_cast<StorageNamespaceController*>(WillBeHeapSupplement<Page>::from(page, supplementName())); }
@@ -34,4 +35,3 @@ private:
} // namespace blink
#endif // StorageNamespaceController_h
-
« no previous file with comments | « no previous file | Source/core/storage/StorageNamespaceController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698