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

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 5f7c4a975935beb0940d7d991b1c6fbdb9716f6f..b2c40a12f3b58401a761f28541977f264f10a0e4 100644
--- a/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
+++ b/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
@@ -602,7 +602,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;

Powered by Google App Engine
This is Rietveld 408576698