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

Unified Diff: trunk/src/content/shell/renderer/test_runner/WebTestProxy.h

Issue 141833002: Revert 245445 "Unifies LayerTreeHost::SetNeedsUpdateLayers and S..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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
Index: trunk/src/content/shell/renderer/test_runner/WebTestProxy.h
===================================================================
--- trunk/src/content/shell/renderer/test_runner/WebTestProxy.h (revision 245527)
+++ trunk/src/content/shell/renderer/test_runner/WebTestProxy.h (working copy)
@@ -106,6 +106,9 @@
void setLogConsoleOutput(bool enabled);
+ // FIXME: Make this private again.
+ void scheduleComposite();
+
void didOpenChooser();
void didCloseChooser();
bool isChooserShown();
@@ -133,6 +136,7 @@
void didInvalidateRect(const blink::WebRect&);
void didScrollRect(int, int, const blink::WebRect&);
+ void scheduleAnimation();
// FIXME: Remove once we switch to use didForceResize.
void setWindowRect(const blink::WebRect&);
void show(blink::WebNavigationPolicy);
@@ -188,9 +192,6 @@
bool willCheckAndDispatchMessageEvent(blink::WebFrame* sourceFrame, blink::WebFrame* targetFrame, blink::WebSecurityOrigin target, blink::WebDOMMessageEvent);
void resetInputMethod();
- void ScheduleComposite();
- void ScheduleAnimation();
-
private:
template<class, typename, typename> friend class WebFrameTestProxy;
void locationChangeDone(blink::WebFrame*);
@@ -254,6 +255,14 @@
{
WebTestProxyBase::didScrollRect(dx, dy, clipRect);
}
+ virtual void scheduleComposite()
+ {
+ WebTestProxyBase::scheduleComposite();
+ }
+ virtual void scheduleAnimation()
+ {
+ WebTestProxyBase::scheduleAnimation();
+ }
virtual void setWindowRect(const blink::WebRect& rect)
{
WebTestProxyBase::setWindowRect(rect);
@@ -519,15 +528,6 @@
WebTestProxyBase::postSpellCheckEvent(eventName);
}
- // Override Base implementation
- virtual void ScheduleComposite()
- {
- WebTestProxyBase::ScheduleComposite();
- }
- virtual void ScheduleAnimation()
- {
- WebTestProxyBase::ScheduleAnimation();
- }
private:
DISALLOW_COPY_AND_ASSIGN(WebTestProxy);
};
« no previous file with comments | « trunk/src/content/renderer/render_widget.cc ('k') | trunk/src/content/shell/renderer/test_runner/WebTestProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698