| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "core/page/Chrome.h" | 68 #include "core/page/Chrome.h" |
| 69 #include "core/page/EventHandler.h" | 69 #include "core/page/EventHandler.h" |
| 70 #include "core/frame/FrameView.h" | 70 #include "core/frame/FrameView.h" |
| 71 #include "core/page/Page.h" | 71 #include "core/page/Page.h" |
| 72 #include "core/page/Settings.h" | 72 #include "core/page/Settings.h" |
| 73 #include "core/page/WindowFeatures.h" | 73 #include "core/page/WindowFeatures.h" |
| 74 #include "core/platform/MIMETypeRegistry.h" | 74 #include "core/platform/MIMETypeRegistry.h" |
| 75 #include "core/platform/chromium/support/WrappedResourceRequest.h" | 75 #include "core/platform/chromium/support/WrappedResourceRequest.h" |
| 76 #include "core/platform/chromium/support/WrappedResourceResponse.h" | 76 #include "core/platform/chromium/support/WrappedResourceResponse.h" |
| 77 #include "core/platform/mediastream/RTCPeerConnectionHandler.h" | 77 #include "core/platform/mediastream/RTCPeerConnectionHandler.h" |
| 78 #include "core/platform/network/HTTPParsers.h" | |
| 79 #include "core/plugins/PluginData.h" | 78 #include "core/plugins/PluginData.h" |
| 80 #include "core/rendering/HitTestResult.h" | 79 #include "core/rendering/HitTestResult.h" |
| 81 #include "modules/device_orientation/DeviceMotionController.h" | 80 #include "modules/device_orientation/DeviceMotionController.h" |
| 82 #include "platform/UserGestureIndicator.h" | 81 #include "platform/UserGestureIndicator.h" |
| 82 #include "platform/network/HTTPParsers.h" |
| 83 #include "platform/network/SocketStreamHandleInternal.h" | 83 #include "platform/network/SocketStreamHandleInternal.h" |
| 84 #include "public/platform/Platform.h" | 84 #include "public/platform/Platform.h" |
| 85 #include "public/platform/WebMimeRegistry.h" | 85 #include "public/platform/WebMimeRegistry.h" |
| 86 #include "public/platform/WebSocketStreamHandle.h" | 86 #include "public/platform/WebSocketStreamHandle.h" |
| 87 #include "public/platform/WebURL.h" | 87 #include "public/platform/WebURL.h" |
| 88 #include "public/platform/WebURLError.h" | 88 #include "public/platform/WebURLError.h" |
| 89 #include "public/platform/WebVector.h" | 89 #include "public/platform/WebVector.h" |
| 90 #include "wtf/StringExtras.h" | 90 #include "wtf/StringExtras.h" |
| 91 #include "wtf/text/CString.h" | 91 #include "wtf/text/CString.h" |
| 92 #include "wtf/text/WTFString.h" | 92 #include "wtf/text/WTFString.h" |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 return m_webFrame->client()->serviceWorkerRegistry(m_webFrame); | 759 return m_webFrame->client()->serviceWorkerRegistry(m_webFrame); |
| 760 } | 760 } |
| 761 | 761 |
| 762 void FrameLoaderClientImpl::didStopAllLoaders() | 762 void FrameLoaderClientImpl::didStopAllLoaders() |
| 763 { | 763 { |
| 764 if (m_webFrame->client()) | 764 if (m_webFrame->client()) |
| 765 m_webFrame->client()->didAbortLoading(m_webFrame); | 765 m_webFrame->client()->didAbortLoading(m_webFrame); |
| 766 } | 766 } |
| 767 | 767 |
| 768 } // namespace WebKit | 768 } // namespace WebKit |
| OLD | NEW |