| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "public/platform/Platform.h" | 185 #include "public/platform/Platform.h" |
| 186 #include "public/platform/WebFileSystem.h" | 186 #include "public/platform/WebFileSystem.h" |
| 187 #include "public/platform/WebFileSystemType.h" | |
| 188 #include "public/platform/WebFloatPoint.h" | 187 #include "public/platform/WebFloatPoint.h" |
| 189 #include "public/platform/WebFloatRect.h" | 188 #include "public/platform/WebFloatRect.h" |
| 190 #include "public/platform/WebPoint.h" | 189 #include "public/platform/WebPoint.h" |
| 191 #include "public/platform/WebRect.h" | 190 #include "public/platform/WebRect.h" |
| 192 #include "public/platform/WebSize.h" | 191 #include "public/platform/WebSize.h" |
| 193 #include "public/platform/WebURLError.h" | 192 #include "public/platform/WebURLError.h" |
| 194 #include "public/platform/WebVector.h" | 193 #include "public/platform/WebVector.h" |
| 195 #include "weborigin/KURL.h" | 194 #include "weborigin/KURL.h" |
| 196 #include "weborigin/SchemeRegistry.h" | 195 #include "weborigin/SchemeRegistry.h" |
| 197 #include "weborigin/SecurityPolicy.h" | 196 #include "weborigin/SecurityPolicy.h" |
| (...skipping 2325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2523 | 2522 |
| 2524 // 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 |
| 2525 // 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. |
| 2526 flushCurrentScopingEffort(m_findRequestIdentifier); | 2525 flushCurrentScopingEffort(m_findRequestIdentifier); |
| 2527 | 2526 |
| 2528 cancelPendingScopingEffort(); | 2527 cancelPendingScopingEffort(); |
| 2529 } | 2528 } |
| 2530 } | 2529 } |
| 2531 | 2530 |
| 2532 } // namespace blink | 2531 } // namespace blink |
| OLD | NEW |