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

Unified 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: 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/web/FrameLoaderClientImpl.h
diff --git a/Source/web/FrameLoaderClientImpl.h b/Source/web/FrameLoaderClientImpl.h
index c91528126c54354c063a5642b2e574b1160628a8..1d0d8c1e2b7e7bf386da9cf11347899405facddb 100644
--- a/Source/web/FrameLoaderClientImpl.h
+++ b/Source/web/FrameLoaderClientImpl.h
@@ -96,7 +96,10 @@ public:
virtual void dispatchDidChangeThemeColor() override;
virtual NavigationPolicy decidePolicyForNavigation(const ResourceRequest&, DocumentLoader*, NavigationPolicy, bool isTransitionNavigation) override;
- virtual void dispatchAddNavigationTransitionData(const String& allowedDestinationOrigin, const String& selector, const String& markup) override;
+ virtual void dispatchAddNavigationTransitionData(
sof 2014/10/24 15:17:14 Stick with the Blink coding style of keeping it al
Zhen Wang 2014/10/27 14:14:45 Using struct now.
+ const String& allowedDestinationOrigin, const String& selector,
+ const String& markup, const Vector<String>& names,
+ const Vector<IntRect>& rects) override;
virtual void dispatchWillRequestResource(FetchRequest*) override;
virtual void dispatchWillSendSubmitEvent(HTMLFormElement*) override;
virtual void dispatchWillSubmitForm(HTMLFormElement*) override;

Powered by Google App Engine
This is Rietveld 408576698