| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 void dispatchDidReceiveTitle(const String&) override; | 97 void dispatchDidReceiveTitle(const String&) override; |
| 98 void dispatchDidChangeIcons(IconType) override; | 98 void dispatchDidChangeIcons(IconType) override; |
| 99 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; | 99 void dispatchDidCommitLoad(HistoryItem*, HistoryCommitType) override; |
| 100 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override; | 100 void dispatchDidFailProvisionalLoad(const ResourceError&, HistoryCommitType)
override; |
| 101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; | 101 void dispatchDidFailLoad(const ResourceError&, HistoryCommitType) override; |
| 102 void dispatchDidFinishDocumentLoad() override; | 102 void dispatchDidFinishDocumentLoad() override; |
| 103 void dispatchDidFinishLoad() override; | 103 void dispatchDidFinishLoad() override; |
| 104 | 104 |
| 105 void dispatchDidChangeThemeColor() override; | 105 void dispatchDidChangeThemeColor() override; |
| 106 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationType, NavigationPolicy, bool shouldReplaceCurrentEntry, bool i
sClientRedirect) override; | 106 NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentL
oader*, NavigationType, NavigationPolicy, bool shouldReplaceCurrentEntry, bool i
sClientRedirect) override; |
| 107 bool hasPendingNavigation() override; | |
| 108 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 107 void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
| 109 void dispatchWillSubmitForm(HTMLFormElement*) override; | 108 void dispatchWillSubmitForm(HTMLFormElement*) override; |
| 110 void didStartLoading(LoadStartType) override; | 109 void didStartLoading(LoadStartType) override; |
| 111 void didStopLoading() override; | 110 void didStopLoading() override; |
| 112 void progressEstimateChanged(double progressEstimate) override; | 111 void progressEstimateChanged(double progressEstimate) override; |
| 113 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g& suggestedName, bool shouldReplaceCurrentEntry) override; | 112 void loadURLExternally(const ResourceRequest&, NavigationPolicy, const Strin
g& suggestedName, bool shouldReplaceCurrentEntry) override; |
| 114 bool navigateBackForward(int offset) const override; | 113 bool navigateBackForward(int offset) const override; |
| 115 void didAccessInitialDocument() override; | 114 void didAccessInitialDocument() override; |
| 116 void didDisplayInsecureContent() override; | 115 void didDisplayInsecureContent() override; |
| 117 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) overrid
e; | 116 void didRunInsecureContent(SecurityOrigin*, const KURL& insecureURL) overrid
e; |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 Member<WebLocalFrameImpl> m_webFrame; | 195 Member<WebLocalFrameImpl> m_webFrame; |
| 197 | 196 |
| 198 String m_userAgent; | 197 String m_userAgent; |
| 199 }; | 198 }; |
| 200 | 199 |
| 201 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 200 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
| 202 | 201 |
| 203 } // namespace blink | 202 } // namespace blink |
| 204 | 203 |
| 205 #endif | 204 #endif |
| OLD | NEW |