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

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

Issue 334283004: Rename DOMWindow to LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 6 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 17c747046db50cfa04a672749e0d132193085116..e8e6725fa59d5bb384b106940168f6cdfc02c3e9 100644
--- a/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
+++ b/Source/modules/indexeddb/DOMWindowIndexedDatabase.h
@@ -33,15 +33,15 @@
namespace WebCore {
class IDBFactory;
-class DOMWindow;
+class LocalDOMWindow;
-class DOMWindowIndexedDatabase FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowIndexedDatabase>, public WillBeHeapSupplement<DOMWindow>, public DOMWindowProperty {
+class DOMWindowIndexedDatabase FINAL : public NoBaseWillBeGarbageCollectedFinalized<DOMWindowIndexedDatabase>, public WillBeHeapSupplement<LocalDOMWindow>, public DOMWindowProperty {
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMWindowIndexedDatabase);
public:
virtual ~DOMWindowIndexedDatabase();
- static DOMWindowIndexedDatabase& from(DOMWindow&);
+ static DOMWindowIndexedDatabase& from(LocalDOMWindow&);
- static IDBFactory* indexedDB(DOMWindow&);
+ static IDBFactory* indexedDB(LocalDOMWindow&);
virtual void willDestroyGlobalObjectInFrame() OVERRIDE;
virtual void willDetachGlobalObjectFromFrame() OVERRIDE;
@@ -49,12 +49,12 @@ public:
void trace(Visitor*);
private:
- explicit DOMWindowIndexedDatabase(DOMWindow&);
+ explicit DOMWindowIndexedDatabase(LocalDOMWindow&);
IDBFactory* indexedDB();
static const char* supplementName();
- DOMWindow& m_window;
+ LocalDOMWindow& m_window;
PersistentWillBeMember<IDBFactory> m_idbFactory;
};
« no previous file with comments | « Source/modules/imagebitmap/ImageBitmapFactories.cpp ('k') | Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698