| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #include "core/page/FrameView.h" | 52 #include "core/page/FrameView.h" |
| 53 #include "core/page/Page.h" | 53 #include "core/page/Page.h" |
| 54 #include "core/platform/MIMETypeRegistry.h" | 54 #include "core/platform/MIMETypeRegistry.h" |
| 55 #include "core/platform/network/HTTPParsers.h" | 55 #include "core/platform/network/HTTPParsers.h" |
| 56 #include "core/platform/network/ResourceHandleInternal.h" | 56 #include "core/platform/network/ResourceHandleInternal.h" |
| 57 #include "core/rendering/HitTestResult.h" | 57 #include "core/rendering/HitTestResult.h" |
| 58 #if ENABLE(MEDIA_STREAM) | 58 #if ENABLE(MEDIA_STREAM) |
| 59 #include "core/platform/mediastream/chromium/RTCPeerConnectionHandlerChromium.h" | 59 #include "core/platform/mediastream/chromium/RTCPeerConnectionHandlerChromium.h" |
| 60 #endif | 60 #endif |
| 61 #include <v8.h> | 61 #include <v8.h> |
| 62 #include "ScriptController.h" | |
| 63 #include "WebAutofillClient.h" | 62 #include "WebAutofillClient.h" |
| 64 #include "WebCachedURLRequest.h" | 63 #include "WebCachedURLRequest.h" |
| 65 #include "WebDOMEvent.h" | 64 #include "WebDOMEvent.h" |
| 66 #include "WebDataSourceImpl.h" | 65 #include "WebDataSourceImpl.h" |
| 67 #include "WebDevToolsAgentPrivate.h" | 66 #include "WebDevToolsAgentPrivate.h" |
| 68 #include "WebDocument.h" | 67 #include "WebDocument.h" |
| 69 #include "WebFormElement.h" | 68 #include "WebFormElement.h" |
| 70 #include "WebFrameClient.h" | 69 #include "WebFrameClient.h" |
| 71 #include "WebFrameImpl.h" | 70 #include "WebFrameImpl.h" |
| 72 #include "WebNode.h" | 71 #include "WebNode.h" |
| 73 #include "WebPermissionClient.h" | 72 #include "WebPermissionClient.h" |
| 74 #include "WebPlugin.h" | 73 #include "WebPlugin.h" |
| 75 #include "WebPluginContainerImpl.h" | 74 #include "WebPluginContainerImpl.h" |
| 76 #include "WebPluginLoadObserver.h" | 75 #include "WebPluginLoadObserver.h" |
| 77 #include "WebPluginParams.h" | 76 #include "WebPluginParams.h" |
| 78 #include "WebSecurityOrigin.h" | 77 #include "WebSecurityOrigin.h" |
| 79 #include "WebViewClient.h" | 78 #include "WebViewClient.h" |
| 80 #include "WebViewImpl.h" | 79 #include "WebViewImpl.h" |
| 80 #include "bindings/v8/ScriptController.h" |
| 81 #include "core/dom/UserGestureIndicator.h" | 81 #include "core/dom/UserGestureIndicator.h" |
| 82 #include "core/page/Settings.h" | 82 #include "core/page/Settings.h" |
| 83 #include "core/page/WindowFeatures.h" | 83 #include "core/page/WindowFeatures.h" |
| 84 #include "core/platform/chromium/support/WrappedResourceRequest.h" | 84 #include "core/platform/chromium/support/WrappedResourceRequest.h" |
| 85 #include "core/platform/chromium/support/WrappedResourceResponse.h" | 85 #include "core/platform/chromium/support/WrappedResourceResponse.h" |
| 86 #include "core/platform/network/SocketStreamHandleInternal.h" | 86 #include "core/platform/network/SocketStreamHandleInternal.h" |
| 87 #include <public/Platform.h> | 87 #include <public/Platform.h> |
| 88 #include <public/WebMimeRegistry.h> | 88 #include <public/WebMimeRegistry.h> |
| 89 #include <public/WebSocketStreamHandle.h> | 89 #include <public/WebSocketStreamHandle.h> |
| 90 #include <public/WebURL.h> | 90 #include <public/WebURL.h> |
| (...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); | 1410 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); |
| 1411 } | 1411 } |
| 1412 | 1412 |
| 1413 void FrameLoaderClientImpl::dispatchWillInsertBody() | 1413 void FrameLoaderClientImpl::dispatchWillInsertBody() |
| 1414 { | 1414 { |
| 1415 if (m_webFrame->client()) | 1415 if (m_webFrame->client()) |
| 1416 m_webFrame->client()->willInsertBody(m_webFrame); | 1416 m_webFrame->client()->willInsertBody(m_webFrame); |
| 1417 } | 1417 } |
| 1418 | 1418 |
| 1419 } // namespace WebKit | 1419 } // namespace WebKit |
| OLD | NEW |