| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 #include "core/xml/XPathResult.h" | 175 #include "core/xml/XPathResult.h" |
| 176 #include "modules/filesystem/DOMFileSystem.h" | 176 #include "modules/filesystem/DOMFileSystem.h" |
| 177 #include "modules/filesystem/DirectoryEntry.h" | 177 #include "modules/filesystem/DirectoryEntry.h" |
| 178 #include "modules/filesystem/FileEntry.h" | 178 #include "modules/filesystem/FileEntry.h" |
| 179 #include "platform/FileSystemType.h" | 179 #include "platform/FileSystemType.h" |
| 180 #include "platform/TraceEvent.h" | 180 #include "platform/TraceEvent.h" |
| 181 #include "platform/UserGestureIndicator.h" | 181 #include "platform/UserGestureIndicator.h" |
| 182 #include "platform/clipboard/ClipboardUtilities.h" | 182 #include "platform/clipboard/ClipboardUtilities.h" |
| 183 #include "platform/network/ResourceRequest.h" | 183 #include "platform/network/ResourceRequest.h" |
| 184 #include "platform/scroll/ScrollTypes.h" | 184 #include "platform/scroll/ScrollTypes.h" |
| 185 #include "platform/weborigin/KURL.h" |
| 186 #include "platform/weborigin/SchemeRegistry.h" |
| 187 #include "platform/weborigin/SecurityPolicy.h" |
| 185 #include "public/platform/Platform.h" | 188 #include "public/platform/Platform.h" |
| 186 #include "public/platform/WebFileSystem.h" | 189 #include "public/platform/WebFileSystem.h" |
| 187 #include "public/platform/WebFloatPoint.h" | 190 #include "public/platform/WebFloatPoint.h" |
| 188 #include "public/platform/WebFloatRect.h" | 191 #include "public/platform/WebFloatRect.h" |
| 189 #include "public/platform/WebPoint.h" | 192 #include "public/platform/WebPoint.h" |
| 190 #include "public/platform/WebRect.h" | 193 #include "public/platform/WebRect.h" |
| 191 #include "public/platform/WebSize.h" | 194 #include "public/platform/WebSize.h" |
| 192 #include "public/platform/WebURLError.h" | 195 #include "public/platform/WebURLError.h" |
| 193 #include "public/platform/WebVector.h" | 196 #include "public/platform/WebVector.h" |
| 194 #include "weborigin/KURL.h" | |
| 195 #include "weborigin/SchemeRegistry.h" | |
| 196 #include "weborigin/SecurityPolicy.h" | |
| 197 #include "wtf/CurrentTime.h" | 197 #include "wtf/CurrentTime.h" |
| 198 #include "wtf/HashMap.h" | 198 #include "wtf/HashMap.h" |
| 199 | 199 |
| 200 using namespace WebCore; | 200 using namespace WebCore; |
| 201 | 201 |
| 202 namespace blink { | 202 namespace blink { |
| 203 | 203 |
| 204 static int frameCount = 0; | 204 static int frameCount = 0; |
| 205 | 205 |
| 206 // Key for a StatsCounter tracking how many WebFrames are active. | 206 // Key for a StatsCounter tracking how many WebFrames are active. |
| (...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2522 | 2522 |
| 2523 // There is a possibility that the frame being detached was the only | 2523 // There is a possibility that the frame being detached was the only |
| 2524 // pending one. We need to make sure final replies can be sent. | 2524 // pending one. We need to make sure final replies can be sent. |
| 2525 flushCurrentScopingEffort(m_findRequestIdentifier); | 2525 flushCurrentScopingEffort(m_findRequestIdentifier); |
| 2526 | 2526 |
| 2527 cancelPendingScopingEffort(); | 2527 cancelPendingScopingEffort(); |
| 2528 } | 2528 } |
| 2529 } | 2529 } |
| 2530 | 2530 |
| 2531 } // namespace blink | 2531 } // namespace blink |
| OLD | NEW |