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

Unified Diff: Source/core/frame/FrameView.h

Issue 140913002: Remove deferred repaint code from FrameView (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove more dead code 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
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/FrameView.h
diff --git a/Source/core/frame/FrameView.h b/Source/core/frame/FrameView.h
index d18d2c43292ee06e2e19a87b5d1f2d2ceb31fbab..5c2a14f4a7b23946de2a631b7eea96d4998faf78 100644
--- a/Source/core/frame/FrameView.h
+++ b/Source/core/frame/FrameView.h
@@ -186,7 +186,6 @@ public:
bool hasViewportConstrainedObjects() const { return m_viewportConstrainedObjects && m_viewportConstrainedObjects->size() > 0; }
void handleLoadCompleted();
- void resetDeferredRepaintDelay();
void updateAnnotatedRegions();
void updateControlTints();
@@ -329,9 +328,6 @@ protected:
private:
explicit FrameView(Frame*);
- void flushDeferredRepaints();
- void startDeferredRepaintTimer(double delay);
-
void reset();
void init();
@@ -393,12 +389,6 @@ private:
virtual void notifyPageThatContentAreaWillPaint() const OVERRIDE;
- bool shouldUseLoadTimeDeferredRepaintDelay() const;
- void deferredRepaintTimerFired(Timer<FrameView>*);
- void doDeferredRepaints();
- void updateDeferredRepaintDelayAfterRepaint();
- double adjustedDeferredRepaintDelay() const;
-
void updateWidgetsTimerFired(Timer<FrameView>*);
bool updateWidgets();
@@ -474,10 +464,6 @@ private:
bool m_inProgrammaticScroll;
bool m_safeToPropagateScrollToParent;
- unsigned m_repaintCount;
- Vector<LayoutRect> m_repaintRects;
- Timer<FrameView> m_deferredRepaintTimer;
- double m_deferredRepaintDelay;
double m_lastPaintTime;
bool m_isTrackingRepaints; // Used for testing.
« no previous file with comments | « no previous file | Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698