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

Unified Diff: Source/modules/indexeddb/InspectorIndexedDBAgent.cpp

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/InspectorIndexedDBAgent.cpp
diff --git a/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp b/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
index 7e6541f07eee297695d4a4275ae908f33255ac8b..17213cf94af51292622a464f7fa7e0d50b41efac 100644
--- a/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
+++ b/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
@@ -603,7 +603,7 @@ static Document* assertDocument(ErrorString* errorString, LocalFrame* frame)
static IDBFactory* assertIDBFactory(ErrorString* errorString, Document* document)
{
- DOMWindow* domWindow = document->domWindow();
+ LocalDOMWindow* domWindow = document->domWindow();
if (!domWindow) {
*errorString = "No IndexedDB factory for given frame found";
return 0;
« no previous file with comments | « Source/modules/indexeddb/DOMWindowIndexedDatabase.cpp ('k') | Source/modules/mediasource/VideoPlaybackQuality.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698