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

Side by Side Diff: Source/core/inspector/PageRuntimeAgent.cpp

Issue 256743005: Add removeAll method to sets and maps and use them (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved implementation of removeAll to HashTable.h and shared it. Also added it to LinkedHashSet Created 6 years, 8 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/InjectedScriptManager.cpp ('k') | Source/core/rendering/RenderLayer.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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 void PageRuntimeAgent::frameWindowDiscarded(DOMWindow* window) 144 void PageRuntimeAgent::frameWindowDiscarded(DOMWindow* window)
145 { 145 {
146 Vector<NewScriptState*> scriptStatesToRemove; 146 Vector<NewScriptState*> scriptStatesToRemove;
147 for (ScriptStateToId::iterator it = m_scriptStateToId.begin(); it != m_scrip tStateToId.end(); ++it) { 147 for (ScriptStateToId::iterator it = m_scriptStateToId.begin(); it != m_scrip tStateToId.end(); ++it) {
148 NewScriptState* scriptState = it->key; 148 NewScriptState* scriptState = it->key;
149 if (window == scriptState->domWindow()) { 149 if (window == scriptState->domWindow()) {
150 scriptStatesToRemove.append(scriptState); 150 scriptStatesToRemove.append(scriptState);
151 m_frontend->executionContextDestroyed(it->value); 151 m_frontend->executionContextDestroyed(it->value);
152 } 152 }
153 } 153 }
154 for (size_t i = 0; i < scriptStatesToRemove.size(); i++) 154 m_scriptStateToId.removeAll(scriptStatesToRemove);
155 m_scriptStateToId.remove(scriptStatesToRemove[i]);
156 } 155 }
157 156
158 } // namespace WebCore 157 } // namespace WebCore
159 158
OLDNEW
« no previous file with comments | « Source/core/inspector/InjectedScriptManager.cpp ('k') | Source/core/rendering/RenderLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698