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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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" | 187 #include "public/platform/WebFileSystemType.h" |
188 #include "public/platform/WebFloatPoint.h" | 188 #include "public/platform/WebFloatPoint.h" |
189 #include "public/platform/WebFloatRect.h" | 189 #include "public/platform/WebFloatRect.h" |
190 #include "public/platform/WebPoint.h" | 190 #include "public/platform/WebPoint.h" |
191 #include "public/platform/WebRect.h" | 191 #include "public/platform/WebRect.h" |
192 #include "public/platform/WebSize.h" | 192 #include "public/platform/WebSize.h" |
193 #include "public/platform/WebURLError.h" | 193 #include "public/platform/WebURLError.h" |
194 #include "public/platform/WebVector.h" | 194 #include "public/platform/WebVector.h" |
195 #include "weborigin/KURL.h" | 195 #include "platform/weborigin/KURL.h" |
196 #include "weborigin/SchemeRegistry.h" | 196 #include "platform/weborigin/SchemeRegistry.h" |
197 #include "weborigin/SecurityPolicy.h" | 197 #include "platform/weborigin/SecurityPolicy.h" |
198 #include "wtf/CurrentTime.h" | 198 #include "wtf/CurrentTime.h" |
199 #include "wtf/HashMap.h" | 199 #include "wtf/HashMap.h" |
200 | 200 |
201 using namespace WebCore; | 201 using namespace WebCore; |
202 | 202 |
203 namespace WebKit { | 203 namespace WebKit { |
204 | 204 |
205 static int frameCount = 0; | 205 static int frameCount = 0; |
206 | 206 |
207 // Key for a StatsCounter tracking how many WebFrames are active. | 207 // Key for a StatsCounter tracking how many WebFrames are active. |
(...skipping 2315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2523 | 2523 |
2524 // There is a possibility that the frame being detached was the only | 2524 // 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. | 2525 // pending one. We need to make sure final replies can be sent. |
2526 flushCurrentScopingEffort(m_findRequestIdentifier); | 2526 flushCurrentScopingEffort(m_findRequestIdentifier); |
2527 | 2527 |
2528 cancelPendingScopingEffort(); | 2528 cancelPendingScopingEffort(); |
2529 } | 2529 } |
2530 } | 2530 } |
2531 | 2531 |
2532 } // namespace WebKit | 2532 } // namespace WebKit |
OLD | NEW |