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

Unified Diff: Source/core/loader/FrameLoaderClient.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: re-add TypeChecking Created 6 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/loader/FrameLoaderClient.h
diff --git a/Source/core/loader/FrameLoaderClient.h b/Source/core/loader/FrameLoaderClient.h
index 32f0be2b51de445dd6d3463289c68982d4e2f43e..a89c156a4690676fe73bec143fa030e9c6040ca6 100644
--- a/Source/core/loader/FrameLoaderClient.h
+++ b/Source/core/loader/FrameLoaderClient.h
@@ -34,6 +34,7 @@
#include "core/frame/FrameClient.h"
#include "core/loader/FrameLoaderTypes.h"
#include "core/loader/NavigationPolicy.h"
+#include "platform/geometry/IntRect.h"
#include "platform/heap/Handle.h"
#include "platform/network/ResourceLoadPriority.h"
#include "platform/weborigin/Referrer.h"
@@ -100,7 +101,9 @@ namespace blink {
virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentLoader*, NavigationPolicy, bool isTransitionNavigation) = 0;
- virtual void dispatchAddNavigationTransitionData(const String& origin, const String& selector, const String& markup) { }
+ virtual void dispatchAddNavigationTransitionData(
+ const String& origin, const String& selector, const String& markup,
sof 2014/10/24 15:17:14 Let's keep this on one line also?
Zhen Wang 2014/10/27 14:14:45 Using struct now.
+ const Vector<String>& names, const Vector<IntRect>& rects) { }
virtual void dispatchWillRequestResource(FetchRequest*) { }
virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) = 0;

Powered by Google App Engine
This is Rietveld 408576698