Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1038)

Side by Side Diff: Source/WebKit/chromium/src/FrameLoaderClientImpl.cpp

Issue 13976008: Remove more #includes from Frame.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/PageWidgetDelegate.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/PageWidgetDelegate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698