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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 virtual void dispatchDidChangeIcons(IconType) override; | 89 virtual void dispatchDidChangeIcons(IconType) override; |
90 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCommitT
ype) override; | 90 virtual void dispatchDidCommitLoad(LocalFrame*, HistoryItem*, HistoryCommitT
ype) override; |
91 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) override; | 91 virtual void dispatchDidFailProvisionalLoad(const ResourceError&) override; |
92 virtual void dispatchDidFailLoad(const ResourceError&) override; | 92 virtual void dispatchDidFailLoad(const ResourceError&) override; |
93 virtual void dispatchDidFinishDocumentLoad() override; | 93 virtual void dispatchDidFinishDocumentLoad() override; |
94 virtual void dispatchDidFinishLoad() override; | 94 virtual void dispatchDidFinishLoad() override; |
95 virtual void dispatchDidFirstVisuallyNonEmptyLayout() override; | 95 virtual void dispatchDidFirstVisuallyNonEmptyLayout() override; |
96 | 96 |
97 virtual void dispatchDidChangeThemeColor() override; | 97 virtual void dispatchDidChangeThemeColor() override; |
98 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D
ocumentLoader*, NavigationPolicy, bool isTransitionNavigation) override; | 98 virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, D
ocumentLoader*, NavigationPolicy, bool isTransitionNavigation) override; |
99 virtual void dispatchAddNavigationTransitionData(const String& allowedDestin
ationOrigin, const String& selector, const String& markup) override; | 99 virtual void dispatchAddNavigationTransitionData(const Document::TransitionE
lementData&) override; |
100 virtual void dispatchWillRequestResource(FetchRequest*) override; | 100 virtual void dispatchWillRequestResource(FetchRequest*) override; |
101 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override; | 101 virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override; |
102 virtual void dispatchWillSubmitForm(HTMLFormElement*) override; | 102 virtual void dispatchWillSubmitForm(HTMLFormElement*) override; |
103 virtual void didStartLoading(LoadStartType) override; | 103 virtual void didStartLoading(LoadStartType) override; |
104 virtual void didStopLoading() override; | 104 virtual void didStopLoading() override; |
105 virtual void progressEstimateChanged(double progressEstimate) override; | 105 virtual void progressEstimateChanged(double progressEstimate) override; |
106 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con
st String& suggestedName = String()) override; | 106 virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, con
st String& suggestedName = String()) override; |
107 virtual bool navigateBackForward(int offset) const override; | 107 virtual bool navigateBackForward(int offset) const override; |
108 virtual void didAccessInitialDocument() override; | 108 virtual void didAccessInitialDocument() override; |
109 virtual void didDisplayInsecureContent() override; | 109 virtual void didDisplayInsecureContent() override; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 // The WebFrame that owns this object and manages its lifetime. Therefore, | 179 // The WebFrame that owns this object and manages its lifetime. Therefore, |
180 // the web frame object is guaranteed to exist. | 180 // the web frame object is guaranteed to exist. |
181 WebLocalFrameImpl* m_webFrame; | 181 WebLocalFrameImpl* m_webFrame; |
182 }; | 182 }; |
183 | 183 |
184 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); | 184 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr
ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); |
185 | 185 |
186 } // namespace blink | 186 } // namespace blink |
187 | 187 |
188 #endif | 188 #endif |
OLD | NEW |