| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // WebFrame::Closing and then derefs the WebFrame and will cause it to be | 68 // WebFrame::Closing and then derefs the WebFrame and will cause it to be |
| 69 // deleted (unless an external someone is also holding a reference). | 69 // deleted (unless an external someone is also holding a reference). |
| 70 | 70 |
| 71 #include "config.h" | 71 #include "config.h" |
| 72 #include "WebFrameImpl.h" | 72 #include "WebFrameImpl.h" |
| 73 | 73 |
| 74 #include <algorithm> | 74 #include <algorithm> |
| 75 #include "AssociatedURLLoader.h" | 75 #include "AssociatedURLLoader.h" |
| 76 #include "AsyncFileSystemChromium.h" | 76 #include "AsyncFileSystemChromium.h" |
| 77 #include "DOMUtilitiesPrivate.h" | 77 #include "DOMUtilitiesPrivate.h" |
| 78 #include "DOMWrapperWorld.h" | |
| 79 #include "EventListenerWrapper.h" | 78 #include "EventListenerWrapper.h" |
| 80 #include "FindInPageCoordinates.h" | 79 #include "FindInPageCoordinates.h" |
| 81 #include "HTMLCollection.h" | 80 #include "HTMLCollection.h" |
| 82 #include "HTMLFormElement.h" | 81 #include "HTMLFormElement.h" |
| 83 #include "HTMLFrameOwnerElement.h" | 82 #include "HTMLFrameOwnerElement.h" |
| 84 #include "HTMLHeadElement.h" | 83 #include "HTMLHeadElement.h" |
| 85 #include "HTMLInputElement.h" | 84 #include "HTMLInputElement.h" |
| 86 #include "HTMLLinkElement.h" | 85 #include "HTMLLinkElement.h" |
| 87 #include "HTMLNames.h" | 86 #include "HTMLNames.h" |
| 88 #include "PageOverlay.h" | 87 #include "PageOverlay.h" |
| 89 #include "PluginDocument.h" | 88 #include "PluginDocument.h" |
| 90 #include "ScriptController.h" | |
| 91 #include "ScriptSourceCode.h" | |
| 92 #include "ScriptValue.h" | |
| 93 #include "SkiaUtils.h" | 89 #include "SkiaUtils.h" |
| 94 #include "V8DOMFileSystem.h" | 90 #include "V8DOMFileSystem.h" |
| 95 #include "V8DirectoryEntry.h" | 91 #include "V8DirectoryEntry.h" |
| 96 #include "V8FileEntry.h" | 92 #include "V8FileEntry.h" |
| 97 #include "V8GCController.h" | |
| 98 #include "WebConsoleMessage.h" | 93 #include "WebConsoleMessage.h" |
| 99 #include "WebDOMEvent.h" | 94 #include "WebDOMEvent.h" |
| 100 #include "WebDOMEventListener.h" | 95 #include "WebDOMEventListener.h" |
| 101 #include "WebDataSourceImpl.h" | 96 #include "WebDataSourceImpl.h" |
| 102 #include "WebDevToolsAgentPrivate.h" | 97 #include "WebDevToolsAgentPrivate.h" |
| 103 #include "WebDocument.h" | 98 #include "WebDocument.h" |
| 104 #include "WebFindOptions.h" | 99 #include "WebFindOptions.h" |
| 105 #include "WebFormElement.h" | 100 #include "WebFormElement.h" |
| 106 #include "WebFrameClient.h" | 101 #include "WebFrameClient.h" |
| 107 #include "WebHistoryItem.h" | 102 #include "WebHistoryItem.h" |
| 108 #include "WebIconURL.h" | 103 #include "WebIconURL.h" |
| 109 #include "WebInputElement.h" | 104 #include "WebInputElement.h" |
| 110 #include "WebNode.h" | 105 #include "WebNode.h" |
| 111 #include "WebPerformance.h" | 106 #include "WebPerformance.h" |
| 112 #include "WebPlugin.h" | 107 #include "WebPlugin.h" |
| 113 #include "WebPluginContainerImpl.h" | 108 #include "WebPluginContainerImpl.h" |
| 114 #include "WebPrintParams.h" | 109 #include "WebPrintParams.h" |
| 115 #include "WebRange.h" | 110 #include "WebRange.h" |
| 116 #include "WebScriptSource.h" | 111 #include "WebScriptSource.h" |
| 117 #include "WebSecurityOrigin.h" | 112 #include "WebSecurityOrigin.h" |
| 118 #include "WebSerializedScriptValue.h" | 113 #include "WebSerializedScriptValue.h" |
| 119 #include "WebViewImpl.h" | 114 #include "WebViewImpl.h" |
| 115 #include "bindings/v8/DOMWrapperWorld.h" |
| 116 #include "bindings/v8/ScriptController.h" |
| 117 #include "bindings/v8/ScriptSourceCode.h" |
| 118 #include "bindings/v8/ScriptValue.h" |
| 119 #include "bindings/v8/V8GCController.h" |
| 120 #include "core/dom/Document.h" | 120 #include "core/dom/Document.h" |
| 121 #include "core/dom/DocumentMarker.h" | 121 #include "core/dom/DocumentMarker.h" |
| 122 #include "core/dom/DocumentMarkerController.h" | 122 #include "core/dom/DocumentMarkerController.h" |
| 123 #include "core/dom/IconURL.h" | 123 #include "core/dom/IconURL.h" |
| 124 #include "core/dom/MessagePort.h" | 124 #include "core/dom/MessagePort.h" |
| 125 #include "core/dom/Node.h" | 125 #include "core/dom/Node.h" |
| 126 #include "core/dom/NodeTraversal.h" | 126 #include "core/dom/NodeTraversal.h" |
| 127 #include "core/dom/ShadowRoot.h" | 127 #include "core/dom/ShadowRoot.h" |
| 128 #include "core/dom/UserGestureIndicator.h" | 128 #include "core/dom/UserGestureIndicator.h" |
| 129 #include "core/dom/default/chromium/PlatformMessagePortChannelChromium.h" | 129 #include "core/dom/default/chromium/PlatformMessagePortChannelChromium.h" |
| (...skipping 2373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2503 | 2503 |
| 2504 // There is a possibility that the frame being detached was the only | 2504 // There is a possibility that the frame being detached was the only |
| 2505 // pending one. We need to make sure final replies can be sent. | 2505 // pending one. We need to make sure final replies can be sent. |
| 2506 flushCurrentScopingEffort(m_findRequestIdentifier); | 2506 flushCurrentScopingEffort(m_findRequestIdentifier); |
| 2507 | 2507 |
| 2508 cancelPendingScopingEffort(); | 2508 cancelPendingScopingEffort(); |
| 2509 } | 2509 } |
| 2510 } | 2510 } |
| 2511 | 2511 |
| 2512 } // namespace WebKit | 2512 } // namespace WebKit |
| OLD | NEW |