| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "MessageEvent.h" | 51 #include "MessageEvent.h" |
| 52 #include "MouseEvent.h" | 52 #include "MouseEvent.h" |
| 53 #include "Page.h" | 53 #include "Page.h" |
| 54 #include "PluginData.h" | 54 #include "PluginData.h" |
| 55 #include "ProgressTracker.h" | 55 #include "ProgressTracker.h" |
| 56 #include "ResourceHandleInternal.h" | 56 #include "ResourceHandleInternal.h" |
| 57 #include "ResourceLoader.h" | 57 #include "ResourceLoader.h" |
| 58 #if ENABLE(MEDIA_STREAM) | 58 #if ENABLE(MEDIA_STREAM) |
| 59 #include "RTCPeerConnectionHandlerChromium.h" | 59 #include "RTCPeerConnectionHandlerChromium.h" |
| 60 #endif | 60 #endif |
| 61 #include "ScriptController.h" |
| 61 #include "Settings.h" | 62 #include "Settings.h" |
| 62 #include "SocketStreamHandleInternal.h" | 63 #include "SocketStreamHandleInternal.h" |
| 63 #include "UserGestureIndicator.h" | 64 #include "UserGestureIndicator.h" |
| 64 #include "WebAutofillClient.h" | 65 #include "WebAutofillClient.h" |
| 65 #include "WebCachedURLRequest.h" | 66 #include "WebCachedURLRequest.h" |
| 66 #include "WebDOMEvent.h" | 67 #include "WebDOMEvent.h" |
| 67 #include "WebDataSourceImpl.h" | 68 #include "WebDataSourceImpl.h" |
| 68 #include "WebDevToolsAgentPrivate.h" | 69 #include "WebDevToolsAgentPrivate.h" |
| 69 #include "WebDocument.h" | 70 #include "WebDocument.h" |
| 70 #include "WebFormElement.h" | 71 #include "WebFormElement.h" |
| (...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); | 1450 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); |
| 1450 } | 1451 } |
| 1451 | 1452 |
| 1452 void FrameLoaderClientImpl::dispatchWillInsertBody() | 1453 void FrameLoaderClientImpl::dispatchWillInsertBody() |
| 1453 { | 1454 { |
| 1454 if (m_webFrame->client()) | 1455 if (m_webFrame->client()) |
| 1455 m_webFrame->client()->willInsertBody(m_webFrame); | 1456 m_webFrame->client()->willInsertBody(m_webFrame); |
| 1456 } | 1457 } |
| 1457 | 1458 |
| 1458 } // namespace WebKit | 1459 } // namespace WebKit |
| OLD | NEW |