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

Unified Diff: Source/core/loader/FrameLoader.cpp

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: 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/FrameLoader.cpp
diff --git a/Source/core/loader/FrameLoader.cpp b/Source/core/loader/FrameLoader.cpp
index a1583c411d1ef3f840e7714411e2f05d0f7891e9..10e9fe73261399f633e2a52a7d8b5f543a1fc1b5 100644
--- a/Source/core/loader/FrameLoader.cpp
+++ b/Source/core/loader/FrameLoader.cpp
@@ -1238,7 +1238,7 @@ bool FrameLoader::dispatchNavigationTransitionData()
Vector<Document::TransitionElementData>::iterator iter = elementData.begin();
for (; iter != elementData.end(); ++iter)
- client()->dispatchAddNavigationTransitionData(iter->scope, iter->selector, iter->markup);
+ client()->dispatchAddNavigationTransitionData(iter->scope, iter->selector, iter->markup, iter->names, iter->rects);
esprehn 2014/10/21 20:50:48 Seems like you should be passing a struct, passing
Zhen Wang 2014/10/21 21:36:48 ditto. See FrameLoaderClientImpl.cpp
return true;
}

Powered by Google App Engine
This is Rietveld 408576698