| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 #include "core/loader/FormState.h" | 65 #include "core/loader/FormState.h" |
| 66 #include "core/loader/FrameLoadRequest.h" | 66 #include "core/loader/FrameLoadRequest.h" |
| 67 #include "core/loader/FrameLoader.h" | 67 #include "core/loader/FrameLoader.h" |
| 68 #include "core/loader/ProgressTracker.h" | 68 #include "core/loader/ProgressTracker.h" |
| 69 #include "core/page/Chrome.h" | 69 #include "core/page/Chrome.h" |
| 70 #include "core/page/EventHandler.h" | 70 #include "core/page/EventHandler.h" |
| 71 #include "core/frame/FrameView.h" | 71 #include "core/frame/FrameView.h" |
| 72 #include "core/page/Page.h" | 72 #include "core/page/Page.h" |
| 73 #include "core/page/Settings.h" | 73 #include "core/page/Settings.h" |
| 74 #include "core/page/WindowFeatures.h" | 74 #include "core/page/WindowFeatures.h" |
| 75 #include "core/platform/MIMETypeRegistry.h" | |
| 76 #include "core/platform/mediastream/RTCPeerConnectionHandler.h" | 75 #include "core/platform/mediastream/RTCPeerConnectionHandler.h" |
| 77 #include "core/plugins/PluginData.h" | 76 #include "core/plugins/PluginData.h" |
| 78 #include "core/rendering/HitTestResult.h" | 77 #include "core/rendering/HitTestResult.h" |
| 79 #include "modules/device_orientation/DeviceMotionController.h" | 78 #include "modules/device_orientation/DeviceMotionController.h" |
| 80 #include "modules/device_orientation/NewDeviceOrientationController.h" | 79 #include "modules/device_orientation/NewDeviceOrientationController.h" |
| 80 #include "platform/MIMETypeRegistry.h" |
| 81 #include "platform/UserGestureIndicator.h" | 81 #include "platform/UserGestureIndicator.h" |
| 82 #include "platform/exported/WrappedResourceRequest.h" | 82 #include "platform/exported/WrappedResourceRequest.h" |
| 83 #include "platform/exported/WrappedResourceResponse.h" | 83 #include "platform/exported/WrappedResourceResponse.h" |
| 84 #include "platform/network/HTTPParsers.h" | 84 #include "platform/network/HTTPParsers.h" |
| 85 #include "platform/network/SocketStreamHandleInternal.h" | 85 #include "platform/network/SocketStreamHandleInternal.h" |
| 86 #include "public/platform/Platform.h" | 86 #include "public/platform/Platform.h" |
| 87 #include "public/platform/WebMimeRegistry.h" | 87 #include "public/platform/WebMimeRegistry.h" |
| 88 #include "public/platform/WebServiceWorkerProvider.h" | 88 #include "public/platform/WebServiceWorkerProvider.h" |
| 89 #include "public/platform/WebServiceWorkerProviderClient.h" | 89 #include "public/platform/WebServiceWorkerProviderClient.h" |
| 90 #include "public/platform/WebSocketStreamHandle.h" | 90 #include "public/platform/WebSocketStreamHandle.h" |
| (...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 return adoptPtr(m_webFrame->client()->createServiceWorkerProvider(m_webFrame
, client.leakPtr())); | 778 return adoptPtr(m_webFrame->client()->createServiceWorkerProvider(m_webFrame
, client.leakPtr())); |
| 779 } | 779 } |
| 780 | 780 |
| 781 void FrameLoaderClientImpl::didStopAllLoaders() | 781 void FrameLoaderClientImpl::didStopAllLoaders() |
| 782 { | 782 { |
| 783 if (m_webFrame->client()) | 783 if (m_webFrame->client()) |
| 784 m_webFrame->client()->didAbortLoading(m_webFrame); | 784 m_webFrame->client()->didAbortLoading(m_webFrame); |
| 785 } | 785 } |
| 786 | 786 |
| 787 } // namespace WebKit | 787 } // namespace WebKit |
| OLD | NEW |