OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple 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 are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * 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 "FormState.h" | 40 #include "FormState.h" |
41 #include "FrameLoadRequest.h" | 41 #include "FrameLoadRequest.h" |
42 #include "FrameLoader.h" | 42 #include "FrameLoader.h" |
43 #include "FrameNetworkingContextImpl.h" | 43 #include "FrameNetworkingContextImpl.h" |
44 #include "FrameView.h" | 44 #include "FrameView.h" |
45 #include "HTMLAppletElement.h" | 45 #include "HTMLAppletElement.h" |
46 #include "HTMLFormElement.h" // needed by FormState.h | 46 #include "HTMLFormElement.h" // needed by FormState.h |
47 #include "HTMLNames.h" | 47 #include "HTMLNames.h" |
48 #include "HistoryItem.h" | 48 #include "HistoryItem.h" |
49 #include "HitTestResult.h" | 49 #include "HitTestResult.h" |
50 #include "MIMETypeRegistry.h" | |
51 #include "MessageEvent.h" | 50 #include "MessageEvent.h" |
52 #include "MouseEvent.h" | 51 #include "MouseEvent.h" |
53 #include "Page.h" | 52 #include "Page.h" |
54 #include "PluginData.h" | 53 #include "PluginData.h" |
55 #include "ProgressTracker.h" | 54 #include "ProgressTracker.h" |
56 #include "ResourceLoader.h" | 55 #include "ResourceLoader.h" |
| 56 #include "core/platform/MIMETypeRegistry.h" |
57 #include "core/platform/network/HTTPParsers.h" | 57 #include "core/platform/network/HTTPParsers.h" |
58 #include "core/platform/network/ResourceHandleInternal.h" | 58 #include "core/platform/network/ResourceHandleInternal.h" |
59 #if ENABLE(MEDIA_STREAM) | 59 #if ENABLE(MEDIA_STREAM) |
60 #include "core/platform/mediastream/chromium/RTCPeerConnectionHandlerChromium.h" | 60 #include "core/platform/mediastream/chromium/RTCPeerConnectionHandlerChromium.h" |
61 #endif | 61 #endif |
62 #include <v8.h> | 62 #include <v8.h> |
63 #include "ScriptController.h" | 63 #include "ScriptController.h" |
64 #include "Settings.h" | 64 #include "Settings.h" |
65 #include "UserGestureIndicator.h" | 65 #include "UserGestureIndicator.h" |
66 #include "WebAutofillClient.h" | 66 #include "WebAutofillClient.h" |
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); | 1386 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); |
1387 } | 1387 } |
1388 | 1388 |
1389 void FrameLoaderClientImpl::dispatchWillInsertBody() | 1389 void FrameLoaderClientImpl::dispatchWillInsertBody() |
1390 { | 1390 { |
1391 if (m_webFrame->client()) | 1391 if (m_webFrame->client()) |
1392 m_webFrame->client()->willInsertBody(m_webFrame); | 1392 m_webFrame->client()->willInsertBody(m_webFrame); |
1393 } | 1393 } |
1394 | 1394 |
1395 } // namespace WebKit | 1395 } // namespace WebKit |
OLD | NEW |