OLD | NEW |
1 /* | 1 /* |
2 Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 (C) 1998 Waldo Bastian (bastian@kde.org) | 3 (C) 1998 Waldo Bastian (bastian@kde.org) |
4 (C) 1998, 1999 Torben Weis (weis@kde.org) | 4 (C) 1998, 1999 Torben Weis (weis@kde.org) |
5 (C) 1999 Lars Knoll (knoll@kde.org) | 5 (C) 1999 Lars Knoll (knoll@kde.org) |
6 (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. | 7 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv
ed. |
8 | 8 |
9 This library is free software; you can redistribute it and/or | 9 This library is free software; you can redistribute it and/or |
10 modify it under the terms of the GNU Library General Public | 10 modify it under the terms of the GNU Library General Public |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 | 247 |
248 // Normal delay | 248 // Normal delay |
249 static void setRepaintThrottlingDeferredRepaintDelay(double p); | 249 static void setRepaintThrottlingDeferredRepaintDelay(double p); |
250 // Negative value would mean that first few repaints happen without a delay | 250 // Negative value would mean that first few repaints happen without a delay |
251 static void setRepaintThrottlingnInitialDeferredRepaintDelayDuringLoading(do
uble p); | 251 static void setRepaintThrottlingnInitialDeferredRepaintDelayDuringLoading(do
uble p); |
252 // The delay grows on each repaint to this maximum value | 252 // The delay grows on each repaint to this maximum value |
253 static void setRepaintThrottlingMaxDeferredRepaintDelayDuringLoading(double
p); | 253 static void setRepaintThrottlingMaxDeferredRepaintDelayDuringLoading(double
p); |
254 // On each repaint the delay increses by this amount | 254 // On each repaint the delay increses by this amount |
255 static void setRepaintThrottlingDeferredRepaintDelayIncrementDuringLoading(d
ouble p); | 255 static void setRepaintThrottlingDeferredRepaintDelayIncrementDuringLoading(d
ouble p); |
256 | 256 |
| 257 // FIXME: Remove this method once plugin loading is decoupled from layout. |
| 258 void flushAnyPendingPostLayoutTasks(); |
| 259 |
257 protected: | 260 protected: |
258 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRec
t& rectToScroll, const IntRect& clipRect); | 261 virtual bool scrollContentsFastPath(const IntSize& scrollDelta, const IntRec
t& rectToScroll, const IntRect& clipRect); |
259 virtual void scrollContentsSlowPath(const IntRect& updateRect); | 262 virtual void scrollContentsSlowPath(const IntRect& updateRect); |
260 | 263 |
261 virtual bool isVerticalDocument() const; | 264 virtual bool isVerticalDocument() const; |
262 virtual bool isFlippedDocument() const; | 265 virtual bool isFlippedDocument() const; |
263 | 266 |
264 private: | 267 private: |
265 FrameView(Frame*); | 268 FrameView(Frame*); |
266 | 269 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 | 402 |
400 static double s_deferredRepaintDelay; | 403 static double s_deferredRepaintDelay; |
401 static double s_initialDeferredRepaintDelayDuringLoading; | 404 static double s_initialDeferredRepaintDelayDuringLoading; |
402 static double s_maxDeferredRepaintDelayDuringLoading; | 405 static double s_maxDeferredRepaintDelayDuringLoading; |
403 static double s_deferredRepaintDelayIncrementDuringLoading; | 406 static double s_deferredRepaintDelayIncrementDuringLoading; |
404 }; | 407 }; |
405 | 408 |
406 } // namespace WebCore | 409 } // namespace WebCore |
407 | 410 |
408 #endif // FrameView_h | 411 #endif // FrameView_h |
OLD | NEW |