| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 bool hasWebView() const override; | 75 bool hasWebView() const override; |
| 76 bool inShadowTree() const override; | 76 bool inShadowTree() const override; |
| 77 Frame* opener() const override; | 77 Frame* opener() const override; |
| 78 void setOpener(Frame*) override; | 78 void setOpener(Frame*) override; |
| 79 Frame* parent() const override; | 79 Frame* parent() const override; |
| 80 Frame* top() const override; | 80 Frame* top() const override; |
| 81 Frame* nextSibling() const override; | 81 Frame* nextSibling() const override; |
| 82 Frame* firstChild() const override; | 82 Frame* firstChild() const override; |
| 83 void willBeDetached() override; | 83 void willBeDetached() override; |
| 84 void detached(FrameDetachType) override; | 84 void detached(FrameDetachType) override; |
| 85 void dispatchWillSendRequest(ResourceRequest&) override; | 85 void willSendRequest(ResourceRequest&, FrameLoadType) override; |
| 86 void dispatchDidReceiveResponse(const ResourceResponse&) override; | 86 void dispatchDidReceiveResponse(const ResourceResponse&) override; |
| 87 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, | 87 void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, |
| 88 const ResourceResponse&) override; | 88 const ResourceResponse&) override; |
| 89 void dispatchDidHandleOnloadEvents() override; | 89 void dispatchDidHandleOnloadEvents() override; |
| 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; | 90 void dispatchDidReceiveServerRedirectForProvisionalLoad() override; |
| 91 void dispatchDidNavigateWithinPage(HistoryItem*, | 91 void didNavigateWithinPage(DocumentLoader*, |
| 92 HistoryCommitType, | 92 FrameLoadType, |
| 93 bool contentInitiated) override; | 93 HistoryItem*, |
| 94 HistoryCommitType, |
| 95 bool contentInitiated) override; |
| 94 void dispatchWillCommitProvisionalLoad() override; | 96 void dispatchWillCommitProvisionalLoad() override; |
| 95 void dispatchDidStartProvisionalLoad() override; | 97 void didStartProvisionalLoad(DocumentLoader*, FrameLoadType) override; |
| 96 void dispatchDidReceiveTitle(const String&) override; | 98 void dispatchDidReceiveTitle(const String&) override; |
| 97 void dispatchDidChangeIcons(IconType) override; | 99 void dispatchDidChangeIcons(IconType) override; |
| 98 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 100 void didCommitProvisionalLoad(DocumentLoader*, |
| 101 FrameLoadType, |
| 102 HistoryItem*, |
| 103 HistoryCommitType) override; |
| 99 void dispatchDidFailProvisionalLoad(const ResourceError&, | 104 void dispatchDidFailProvisionalLoad(const ResourceError&, |
| 100 HistoryCommitType) override; | 105 HistoryCommitType) override; |
| 101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 106 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; |
| 102 void dispatchDidFinishDocumentLoad() override; | 107 void dispatchDidFinishDocumentLoad() override; |
| 103 void dispatchDidFinishLoad() override; | 108 void dispatchDidFinishLoad() override; |
| 104 | 109 |
| 105 void dispatchDidChangeThemeColor() override; | 110 void dispatchDidChangeThemeColor() override; |
| 106 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, | 111 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, |
| 107 DocumentLoader*, | 112 DocumentLoader*, |
| 108 NavigationType, | |
| 109 NavigationPolicy, | 113 NavigationPolicy, |
| 110 bool shouldReplaceCurrentEntry, | 114 FrameLoadType, |
| 111 bool isClientRedirect, | 115 bool isClientRedirect, |
| 112 HTMLFormElement*) override; | 116 HTMLFormElement*) override; |
| 113 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 117 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 114 void dispatchWillSubmitForm(HTMLFormElement*) override; | 118 void dispatchWillSubmitForm(HTMLFormElement*) override; |
| 115 void didStartLoading(LoadStartType) override; | 119 void didStartLoading(LoadStartType) override; |
| 116 void didStopLoading() override; | 120 void didStopLoading() override; |
| 117 void progressEstimateChanged(double progressEstimate) override; | 121 void progressEstimateChanged(double progressEstimate) override; |
| 118 void loadURLExternally(const ResourceRequest&, | 122 void loadURLExternally(const ResourceRequest&, |
| 119 NavigationPolicy, | 123 NavigationPolicy, |
| 120 const String& suggestedName, | 124 const String& suggestedName, |
| 121 bool shouldReplaceCurrentEntry) override; | 125 FrameLoadType) override; |
| 122 void loadErrorPage(int reason) override; | 126 void loadErrorPage(int reason) override; |
| 123 bool navigateBackForward(int offset) const override; | 127 bool navigateBackForward(int offset) const override; |
| 124 void didAccessInitialDocument() override; | 128 void didAccessInitialDocument() override; |
| 125 void didDisplayInsecureContent() override; | 129 void didDisplayInsecureContent() override; |
| 126 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) override; | 130 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) override; |
| 127 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; | 131 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; |
| 128 void didDispatchPingLoader(const KURL&) override; | 132 void didDispatchPingLoader(const KURL&) override; |
| 129 void didDisplayContentWithCertificateErrors(const KURL&) override; | 133 void didDisplayContentWithCertificateErrors(const KURL&) override; |
| 130 void didRunContentWithCertificateErrors(const KURL&) override; | 134 void didRunContentWithCertificateErrors(const KURL&) override; |
| 131 void didChangePerformanceTiming() override; | 135 void didChangePerformanceTiming() override; |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 | 240 |
| 237 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, | 241 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, |
| 238 FrameLoaderClient, | 242 FrameLoaderClient, |
| 239 client, | 243 client, |
| 240 client->isFrameLoaderClientImpl(), | 244 client->isFrameLoaderClientImpl(), |
| 241 client.isFrameLoaderClientImpl()); | 245 client.isFrameLoaderClientImpl()); |
| 242 | 246 |
| 243 } // namespace blink | 247 } // namespace blink |
| 244 | 248 |
| 245 #endif | 249 #endif |
| OLD | NEW |