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

Side by Side Diff: Source/core/inspector/PageRuntimeAgent.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/inspector/PageRuntimeAgent.h ('k') | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 addExecutionContextToFrontend(scriptState, true, "", frameId); 142 addExecutionContextToFrontend(scriptState, true, "", frameId);
143 localFrame->script().collectIsolatedContexts(isolatedContexts); 143 localFrame->script().collectIsolatedContexts(isolatedContexts);
144 if (isolatedContexts.isEmpty()) 144 if (isolatedContexts.isEmpty())
145 continue; 145 continue;
146 for (size_t i = 0; i< isolatedContexts.size(); i++) 146 for (size_t i = 0; i< isolatedContexts.size(); i++)
147 addExecutionContextToFrontend(isolatedContexts[i].first, false, isol atedContexts[i].second->toRawString(), frameId); 147 addExecutionContextToFrontend(isolatedContexts[i].first, false, isol atedContexts[i].second->toRawString(), frameId);
148 isolatedContexts.clear(); 148 isolatedContexts.clear();
149 } 149 }
150 } 150 }
151 151
152 void PageRuntimeAgent::frameWindowDiscarded(DOMWindow* window) 152 void PageRuntimeAgent::frameWindowDiscarded(LocalDOMWindow* window)
153 { 153 {
154 Vector<RefPtr<ScriptState> > scriptStatesToRemove; 154 Vector<RefPtr<ScriptState> > scriptStatesToRemove;
155 for (ScriptStateToId::iterator it = m_scriptStateToId.begin(); it != m_scrip tStateToId.end(); ++it) { 155 for (ScriptStateToId::iterator it = m_scriptStateToId.begin(); it != m_scrip tStateToId.end(); ++it) {
156 RefPtr<ScriptState> scriptState = it->key; 156 RefPtr<ScriptState> scriptState = it->key;
157 if (scriptState->contextIsEmpty() || window == scriptState->domWindow()) { 157 if (scriptState->contextIsEmpty() || window == scriptState->domWindow()) {
158 scriptStatesToRemove.append(scriptState); 158 scriptStatesToRemove.append(scriptState);
159 m_frontend->executionContextDestroyed(it->value); 159 m_frontend->executionContextDestroyed(it->value);
160 } 160 }
161 } 161 }
162 m_scriptStateToId.removeAll(scriptStatesToRemove); 162 m_scriptStateToId.removeAll(scriptStatesToRemove);
163 } 163 }
164 164
165 } // namespace WebCore 165 } // namespace WebCore
166 166
OLDNEW
« no previous file with comments | « Source/core/inspector/PageRuntimeAgent.h ('k') | Source/core/loader/DocumentLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698