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

Unified Diff: Source/modules/indexeddb/DOMWindowIndexedDatabase.h

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, 2 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/indexeddb/DOMWindowIndexedDatabase.h
diff --git a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
index cf6501f1f7a3ab14a72a315817cd99265ee8ec52..43fe934c61340be2eb05923b11233809a9c62df1 100644
--- a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
+++ b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
@@ -33,7 +33,7 @@
namespace blink {
class IDBFactory;
-class LocalDOMWindow;
+class DOMWindow;
class DOMWindowIndexedDatabase final : public NoBaseWillBeGarbageCollected<DOMWindowIndexedDatabase>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowIndexedDatabase);
@@ -41,7 +41,7 @@ class DOMWindowIndexedDatabase final : public NoBaseWillBeGarbageCollected<DOMWi
public:
static DOMWindowIndexedDatabase& from(LocalDOMWindow&);
- static IDBFactory* indexedDB(LocalDOMWindow&);
+ static IDBFactory* indexedDB(DOMWindow&);
virtual void willDestroyGlobalObjectInFrame() override;
virtual void willDetachGlobalObjectFromFrame() override;

Powered by Google App Engine
This is Rietveld 408576698