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 18 matching lines...) Expand all Loading... |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 #include "config.h" | 32 #include "config.h" |
33 #include "FrameLoaderClientImpl.h" | 33 #include "FrameLoaderClientImpl.h" |
34 | 34 |
35 #include "BackForwardListChromium.h" | 35 #include "BackForwardListChromium.h" |
36 #include "Chrome.h" | 36 #include "Chrome.h" |
37 #include "Document.h" | 37 #include "Document.h" |
38 #include "DocumentLoader.h" | 38 #include "DocumentLoader.h" |
| 39 #include "EventHandler.h" |
39 #include "FormState.h" | 40 #include "FormState.h" |
40 #include "FrameLoadRequest.h" | 41 #include "FrameLoadRequest.h" |
41 #include "FrameLoader.h" | 42 #include "FrameLoader.h" |
42 #include "FrameNetworkingContextImpl.h" | 43 #include "FrameNetworkingContextImpl.h" |
43 #include "FrameView.h" | 44 #include "FrameView.h" |
44 #include "HTMLAppletElement.h" | 45 #include "HTMLAppletElement.h" |
45 #include "HTMLFormElement.h" // needed by FormState.h | 46 #include "HTMLFormElement.h" // needed by FormState.h |
46 #include "HTMLNames.h" | 47 #include "HTMLNames.h" |
47 #include "HTTPParsers.h" | 48 #include "HTTPParsers.h" |
48 #include "HistoryItem.h" | 49 #include "HistoryItem.h" |
(...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1480 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); | 1481 m_webFrame->client()->didLoseWebGLContext(m_webFrame, arbRobustnessConte
xtLostReason); |
1481 } | 1482 } |
1482 | 1483 |
1483 void FrameLoaderClientImpl::dispatchWillInsertBody() | 1484 void FrameLoaderClientImpl::dispatchWillInsertBody() |
1484 { | 1485 { |
1485 if (m_webFrame->client()) | 1486 if (m_webFrame->client()) |
1486 m_webFrame->client()->willInsertBody(m_webFrame); | 1487 m_webFrame->client()->willInsertBody(m_webFrame); |
1487 } | 1488 } |
1488 | 1489 |
1489 } // namespace WebKit | 1490 } // namespace WebKit |
OLD | NEW |