| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|    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 "EventListenerWrapper.h" |    78 #include "EventListenerWrapper.h" | 
|    79 #include "FindInPageCoordinates.h" |    79 #include "FindInPageCoordinates.h" | 
|    80 #include "HTMLNames.h" |    80 #include "HTMLNames.h" | 
|    81 #include "PageOverlay.h" |    81 #include "PageOverlay.h" | 
|    82 #include "SkiaUtils.h" |  | 
|    83 #include "V8DOMFileSystem.h" |    82 #include "V8DOMFileSystem.h" | 
|    84 #include "V8DirectoryEntry.h" |    83 #include "V8DirectoryEntry.h" | 
|    85 #include "V8FileEntry.h" |    84 #include "V8FileEntry.h" | 
|    86 #include "WebConsoleMessage.h" |    85 #include "WebConsoleMessage.h" | 
|    87 #include "WebDOMEvent.h" |    86 #include "WebDOMEvent.h" | 
|    88 #include "WebDOMEventListener.h" |    87 #include "WebDOMEventListener.h" | 
|    89 #include "WebDataSourceImpl.h" |    88 #include "WebDataSourceImpl.h" | 
|    90 #include "WebDevToolsAgentPrivate.h" |    89 #include "WebDevToolsAgentPrivate.h" | 
|    91 #include "WebDocument.h" |    90 #include "WebDocument.h" | 
|    92 #include "WebFindOptions.h" |    91 #include "WebFindOptions.h" | 
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   156 #include "core/page/SecurityPolicy.h" |   155 #include "core/page/SecurityPolicy.h" | 
|   157 #include "core/page/Settings.h" |   156 #include "core/page/Settings.h" | 
|   158 #include "core/platform/AsyncFileSystem.h" |   157 #include "core/platform/AsyncFileSystem.h" | 
|   159 #include "core/platform/KURL.h" |   158 #include "core/platform/KURL.h" | 
|   160 #include "core/platform/SchemeRegistry.h" |   159 #include "core/platform/SchemeRegistry.h" | 
|   161 #include "core/platform/ScrollTypes.h" |   160 #include "core/platform/ScrollTypes.h" | 
|   162 #include "core/platform/ScrollbarTheme.h" |   161 #include "core/platform/ScrollbarTheme.h" | 
|   163 #include "core/platform/chromium/ClipboardUtilitiesChromium.h" |   162 #include "core/platform/chromium/ClipboardUtilitiesChromium.h" | 
|   164 #include "core/platform/chromium/TraceEvent.h" |   163 #include "core/platform/chromium/TraceEvent.h" | 
|   165 #include "core/platform/graphics/FontCache.h" |   164 #include "core/platform/graphics/FontCache.h" | 
 |   165 #include "core/platform/graphics/skia/SkiaUtils.h" | 
|   166 #include "core/platform/network/ResourceHandle.h" |   166 #include "core/platform/network/ResourceHandle.h" | 
|   167 #include "core/platform/network/ResourceRequest.h" |   167 #include "core/platform/network/ResourceRequest.h" | 
|   168 #include "core/rendering/HitTestResult.h" |   168 #include "core/rendering/HitTestResult.h" | 
|   169 #include "core/rendering/RenderBox.h" |   169 #include "core/rendering/RenderBox.h" | 
|   170 #include "core/rendering/RenderFrame.h" |   170 #include "core/rendering/RenderFrame.h" | 
|   171 #include "core/rendering/RenderLayer.h" |   171 #include "core/rendering/RenderLayer.h" | 
|   172 #include "core/rendering/RenderObject.h" |   172 #include "core/rendering/RenderObject.h" | 
|   173 #include "core/rendering/RenderTreeAsText.h" |   173 #include "core/rendering/RenderTreeAsText.h" | 
|   174 #include "core/rendering/RenderView.h" |   174 #include "core/rendering/RenderView.h" | 
|   175 #include "core/rendering/style/StyleInheritedData.h" |   175 #include "core/rendering/style/StyleInheritedData.h" | 
| (...skipping 2327 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 |