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

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

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix 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/WebBindings.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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/WebBindings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698