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

Side by Side Diff: Source/web/FrameLoaderClientImpl.cpp

Issue 344593002: Qualify RuntimeEnabledFeatures.h and remove unnecessary include dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebaseline Created 6 years, 6 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
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/FullscreenController.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 15 matching lines...) Expand all
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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 "web/FrameLoaderClientImpl.h" 33 #include "web/FrameLoaderClientImpl.h"
34 34
35 #include "HTMLNames.h" 35 #include "HTMLNames.h"
36 #include "RuntimeEnabledFeatures.h"
37 #include "bindings/v8/ScriptController.h" 36 #include "bindings/v8/ScriptController.h"
38 #include "core/dom/Document.h" 37 #include "core/dom/Document.h"
39 #include "core/dom/DocumentFullscreen.h" 38 #include "core/dom/DocumentFullscreen.h"
40 #include "core/events/MessageEvent.h" 39 #include "core/events/MessageEvent.h"
41 #include "core/events/MouseEvent.h" 40 #include "core/events/MouseEvent.h"
42 #include "core/frame/FrameView.h" 41 #include "core/frame/FrameView.h"
43 #include "core/frame/Settings.h" 42 #include "core/frame/Settings.h"
44 #include "core/html/HTMLAppletElement.h" 43 #include "core/html/HTMLAppletElement.h"
45 #include "core/loader/DocumentLoader.h" 44 #include "core/loader/DocumentLoader.h"
46 #include "core/loader/FrameLoadRequest.h" 45 #include "core/loader/FrameLoadRequest.h"
47 #include "core/loader/FrameLoader.h" 46 #include "core/loader/FrameLoader.h"
48 #include "core/loader/HistoryItem.h" 47 #include "core/loader/HistoryItem.h"
49 #include "core/page/Chrome.h" 48 #include "core/page/Chrome.h"
50 #include "core/page/EventHandler.h" 49 #include "core/page/EventHandler.h"
51 #include "core/page/Page.h" 50 #include "core/page/Page.h"
52 #include "core/page/WindowFeatures.h" 51 #include "core/page/WindowFeatures.h"
53 #include "core/rendering/HitTestResult.h" 52 #include "core/rendering/HitTestResult.h"
54 #include "modules/device_light/DeviceLightController.h" 53 #include "modules/device_light/DeviceLightController.h"
55 #include "modules/device_orientation/DeviceMotionController.h" 54 #include "modules/device_orientation/DeviceMotionController.h"
56 #include "modules/device_orientation/DeviceOrientationController.h" 55 #include "modules/device_orientation/DeviceOrientationController.h"
57 #include "modules/gamepad/NavigatorGamepad.h" 56 #include "modules/gamepad/NavigatorGamepad.h"
58 #include "modules/serviceworkers/NavigatorServiceWorker.h" 57 #include "modules/serviceworkers/NavigatorServiceWorker.h"
59 #include "platform/MIMETypeRegistry.h" 58 #include "platform/MIMETypeRegistry.h"
59 #include "platform/RuntimeEnabledFeatures.h"
60 #include "platform/UserGestureIndicator.h" 60 #include "platform/UserGestureIndicator.h"
61 #include "platform/exported/WrappedResourceRequest.h" 61 #include "platform/exported/WrappedResourceRequest.h"
62 #include "platform/exported/WrappedResourceResponse.h" 62 #include "platform/exported/WrappedResourceResponse.h"
63 #include "platform/network/HTTPParsers.h" 63 #include "platform/network/HTTPParsers.h"
64 #include "platform/network/SocketStreamHandleInternal.h" 64 #include "platform/network/SocketStreamHandleInternal.h"
65 #include "platform/plugins/PluginData.h" 65 #include "platform/plugins/PluginData.h"
66 #include "public/platform/Platform.h" 66 #include "public/platform/Platform.h"
67 #include "public/platform/WebApplicationCacheHost.h" 67 #include "public/platform/WebApplicationCacheHost.h"
68 #include "public/platform/WebMimeRegistry.h" 68 #include "public/platform/WebMimeRegistry.h"
69 #include "public/platform/WebRTCPeerConnectionHandler.h" 69 #include "public/platform/WebRTCPeerConnectionHandler.h"
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after
807 m_webFrame->client()->didAbortLoading(m_webFrame); 807 m_webFrame->client()->didAbortLoading(m_webFrame);
808 } 808 }
809 809
810 void FrameLoaderClientImpl::dispatchDidChangeManifest() 810 void FrameLoaderClientImpl::dispatchDidChangeManifest()
811 { 811 {
812 if (m_webFrame->client()) 812 if (m_webFrame->client())
813 m_webFrame->client()->didChangeManifest(m_webFrame); 813 m_webFrame->client()->didChangeManifest(m_webFrame);
814 } 814 }
815 815
816 } // namespace blink 816 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/ChromeClientImpl.cpp ('k') | Source/web/FullscreenController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698