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

Unified Diff: Source/modules/storage/DOMWindowStorageController.cpp

Issue 1060813005: Componentization: fix SupplementTracing<0>::~SupplementTracing<0>(void) already defined. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: DOMWindowStorageController.h should include Document.h Created 5 years, 8 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
Index: Source/modules/storage/DOMWindowStorageController.cpp
diff --git a/Source/modules/storage/DOMWindowStorageController.cpp b/Source/modules/storage/DOMWindowStorageController.cpp
index ca6023ad6156c44fa61f92fe0999c6f125c2b94e..8097370911e5ae7b15897b41587f407be5409008 100644
--- a/Source/modules/storage/DOMWindowStorageController.cpp
+++ b/Source/modules/storage/DOMWindowStorageController.cpp
@@ -42,7 +42,7 @@ DOMWindowStorageController& DOMWindowStorageController::from(Document& document)
DOMWindowStorageController* controller = static_cast<DOMWindowStorageController*>(WillBeHeapSupplement<Document>::from(document, supplementName()));
if (!controller) {
controller = new DOMWindowStorageController(document);
- DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(controller));
+ WillBeHeapSupplement<Document>::provideTo(document, supplementName(), adoptPtrWillBeNoop(controller));
}
return *controller;
}

Powered by Google App Engine
This is Rietveld 408576698