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

Unified Diff: sky/engine/core/page/Chrome.h

Issue 880713003: Rename scheduleAnimation() to scheduleVisualUpdate(). (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase. Created 5 years, 11 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
« no previous file with comments | « sky/engine/core/loader/EmptyClients.h ('k') | sky/engine/core/page/Chrome.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/page/Chrome.h
diff --git a/sky/engine/core/page/Chrome.h b/sky/engine/core/page/Chrome.h
index 6afc18c692f46460d1c2eedc6b8121c50bf7961d..aae2088c63f9b0c1edde992bd7bfe8e5fbfd3b80 100644
--- a/sky/engine/core/page/Chrome.h
+++ b/sky/engine/core/page/Chrome.h
@@ -48,7 +48,7 @@ class Chrome final : public HostWindow {
public:
virtual ~Chrome();
- static PassOwnPtr<Chrome> create(Page*, ChromeClient*);
+ static PassOwnPtr<Chrome> create(ChromeClient*);
ChromeClient& client() { return *m_client; }
@@ -56,7 +56,7 @@ public:
virtual IntRect rootViewToScreen(const IntRect&) const override;
virtual blink::WebScreenInfo screenInfo() const override;
- virtual void scheduleAnimation() override;
+ virtual void scheduleVisualUpdate() override;
void setCursor(const Cursor&);
@@ -77,9 +77,8 @@ public:
void willBeDestroyed();
private:
- Chrome(Page*, ChromeClient*);
+ Chrome(ChromeClient*);
- Page* m_page;
ChromeClient* m_client;
};
« no previous file with comments | « sky/engine/core/loader/EmptyClients.h ('k') | sky/engine/core/page/Chrome.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698