OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 29 matching lines...) Expand all Loading... |
40 #include "Event.h" | 40 #include "Event.h" |
41 #include "FormState.h" | 41 #include "FormState.h" |
42 #include "Frame.h" | 42 #include "Frame.h" |
43 #include "FrameLoader.h" | 43 #include "FrameLoader.h" |
44 #include "FrameLoaderClient.h" | 44 #include "FrameLoaderClient.h" |
45 #include "FrameTree.h" | 45 #include "FrameTree.h" |
46 #include "HTMLFormElement.h" | 46 #include "HTMLFormElement.h" |
47 #include "HTMLFrameOwnerElement.h" | 47 #include "HTMLFrameOwnerElement.h" |
48 #include "HistoryItem.h" | 48 #include "HistoryItem.h" |
49 #include "InspectorInstrumentation.h" | 49 #include "InspectorInstrumentation.h" |
50 #include "Logging.h" | |
51 #include "MHTMLArchive.h" | 50 #include "MHTMLArchive.h" |
52 #include "MemoryCache.h" | 51 #include "MemoryCache.h" |
53 #include "Page.h" | 52 #include "Page.h" |
54 #include "ResourceLoader.h" | 53 #include "ResourceLoader.h" |
55 #include "SchemeRegistry.h" | |
56 #include "SecurityPolicy.h" | 54 #include "SecurityPolicy.h" |
57 #include "Settings.h" | 55 #include "Settings.h" |
58 #include "TextResourceDecoder.h" | 56 #include "TextResourceDecoder.h" |
59 #include "WebCoreMemoryInstrumentation.h" | 57 #include "WebCoreMemoryInstrumentation.h" |
60 #include "core/loader/UniqueIdentifier.h" | 58 #include "core/loader/UniqueIdentifier.h" |
| 59 #include "core/platform/Logging.h" |
| 60 #include "core/platform/SchemeRegistry.h" |
61 #include <wtf/Assertions.h> | 61 #include <wtf/Assertions.h> |
62 #include <wtf/MemoryInstrumentationHashMap.h> | 62 #include <wtf/MemoryInstrumentationHashMap.h> |
63 #include <wtf/MemoryInstrumentationHashSet.h> | 63 #include <wtf/MemoryInstrumentationHashSet.h> |
64 #include <wtf/MemoryInstrumentationVector.h> | 64 #include <wtf/MemoryInstrumentationVector.h> |
65 #include <wtf/text/CString.h> | 65 #include <wtf/text/CString.h> |
66 #include <wtf/text/WTFString.h> | 66 #include <wtf/text/WTFString.h> |
67 #include <wtf/unicode/Unicode.h> | 67 #include <wtf/unicode/Unicode.h> |
68 | 68 |
69 namespace WebCore { | 69 namespace WebCore { |
70 | 70 |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1167 commitLoad(resourceData->data(), resourceData->size()); | 1167 commitLoad(resourceData->data(), resourceData->size()); |
1168 } | 1168 } |
1169 | 1169 |
1170 void DocumentLoader::handledOnloadEvents() | 1170 void DocumentLoader::handledOnloadEvents() |
1171 { | 1171 { |
1172 m_wasOnloadHandled = true; | 1172 m_wasOnloadHandled = true; |
1173 applicationCacheHost()->stopDeferringEvents(); | 1173 applicationCacheHost()->stopDeferringEvents(); |
1174 } | 1174 } |
1175 | 1175 |
1176 } // namespace WebCore | 1176 } // namespace WebCore |
OLD | NEW |