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

Side by Side Diff: Source/core/page/FrameView.h

Issue 20140002: Remove minimumLayoutDelay() and associated machinery (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: another fix Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 439
440 bool m_canHaveScrollbars; 440 bool m_canHaveScrollbars;
441 bool m_cannotBlitToWindow; 441 bool m_cannotBlitToWindow;
442 bool m_isOverlapped; 442 bool m_isOverlapped;
443 bool m_contentIsOpaque; 443 bool m_contentIsOpaque;
444 unsigned m_slowRepaintObjectCount; 444 unsigned m_slowRepaintObjectCount;
445 int m_borderX; 445 int m_borderX;
446 int m_borderY; 446 int m_borderY;
447 447
448 Timer<FrameView> m_layoutTimer; 448 Timer<FrameView> m_layoutTimer;
449 bool m_delayedLayout;
450 RenderObject* m_layoutRoot; 449 RenderObject* m_layoutRoot;
451 450
452 bool m_layoutSchedulingEnabled; 451 bool m_layoutSchedulingEnabled;
453 bool m_inLayout; 452 bool m_inLayout;
454 bool m_doingPreLayoutStyleUpdate; 453 bool m_doingPreLayoutStyleUpdate;
455 bool m_inSynchronousPostLayout; 454 bool m_inSynchronousPostLayout;
456 int m_layoutCount; 455 int m_layoutCount;
457 unsigned m_nestedLayoutCount; 456 unsigned m_nestedLayoutCount;
458 Timer<FrameView> m_postLayoutTasksTimer; 457 Timer<FrameView> m_postLayoutTasksTimer;
459 bool m_firstLayoutCallbackPending; 458 bool m_firstLayoutCallbackPending;
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 ASSERT(!widget || widget->isFrameView()); 578 ASSERT(!widget || widget->isFrameView());
580 return static_cast<const FrameView*>(widget); 579 return static_cast<const FrameView*>(widget);
581 } 580 }
582 581
583 // This will catch anyone doing an unnecessary cast. 582 // This will catch anyone doing an unnecessary cast.
584 void toFrameView(const FrameView*); 583 void toFrameView(const FrameView*);
585 584
586 } // namespace WebCore 585 } // namespace WebCore
587 586
588 #endif // FrameView_h 587 #endif // FrameView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698