| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |