Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Side by Side Diff: Source/web/FrameLoaderClientImpl.h

Issue 654953002: Navigation transitions (web to native app): Get names and rects of transition elements (Step 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: review fix Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 // The WebFrame that owns this object and manages its lifetime. Therefore, 181 // The WebFrame that owns this object and manages its lifetime. Therefore,
182 // the web frame object is guaranteed to exist. 182 // the web frame object is guaranteed to exist.
183 WebLocalFrameImpl* m_webFrame; 183 WebLocalFrameImpl* m_webFrame;
184 }; 184 };
185 185
186 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl()); 186 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, FrameLoaderClient, client, client->isFr ameLoaderClientImpl(), client.isFrameLoaderClientImpl());
187 187
188 } // namespace blink 188 } // namespace blink
189 189
190 #endif 190 #endif
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | Source/web/FrameLoaderClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698