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

Unified Diff: sky/engine/web/FrameLoaderClientImpl.h

Issue 682413006: Add a separate call to initialize the bounds for a sky <iframe> element. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: sky/engine/web/FrameLoaderClientImpl.h
diff --git a/sky/engine/web/FrameLoaderClientImpl.h b/sky/engine/web/FrameLoaderClientImpl.h
index 54582f6b7cc6dcbc13403ee701ba08796004d77b..0b1bdb9ec36b7d516e24f41f17252d69bc336301 100644
--- a/sky/engine/web/FrameLoaderClientImpl.h
+++ b/sky/engine/web/FrameLoaderClientImpl.h
@@ -73,7 +73,8 @@ public:
virtual void didStopLoading() override;
virtual void progressEstimateChanged(double progressEstimate) override;
virtual void loadURLExternally(const ResourceRequest&, NavigationPolicy, const String& suggestedName = String()) override;
- virtual void createView(const KURL&) override;
+ virtual uint32_t createChildFrame(const KURL&) override;
+ virtual void initializeChildFrame(uint32_t, const IntRect&) override;
virtual void selectorMatchChanged(const Vector<String>& addedSelectors, const Vector<String>& removedSelectors) override;
virtual void transitionToCommittedForNewPage() override;
virtual void didChangeScrollOffset() override;

Powered by Google App Engine
This is Rietveld 408576698