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

Unified Diff: Source/modules/quota/DOMWindowQuota.cpp

Issue 683013002: Extract a DOMWindow interface from LocalDOMWindow and use it in the idl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix incorrect assumption Created 6 years, 1 month 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/quota/DOMWindowQuota.cpp
diff --git a/Source/modules/quota/DOMWindowQuota.cpp b/Source/modules/quota/DOMWindowQuota.cpp
index 73c9f7e93f6a3edc1d154d0e3cfe4fefc320df65..17029fcd7dbb51357a6be1d4554a5a02cf859f54 100644
--- a/Source/modules/quota/DOMWindowQuota.cpp
+++ b/Source/modules/quota/DOMWindowQuota.cpp
@@ -62,9 +62,9 @@ DOMWindowQuota& DOMWindowQuota::from(LocalDOMWindow& window)
}
// static
-DeprecatedStorageInfo* DOMWindowQuota::webkitStorageInfo(LocalDOMWindow& window)
+DeprecatedStorageInfo* DOMWindowQuota::webkitStorageInfo(DOMWindow& window)
haraken 2014/11/08 09:17:25 Ditto.
{
- return DOMWindowQuota::from(window).webkitStorageInfo();
+ return DOMWindowQuota::from(toLocalDOMWindow(window)).webkitStorageInfo();
}
DeprecatedStorageInfo* DOMWindowQuota::webkitStorageInfo() const

Powered by Google App Engine
This is Rietveld 408576698