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

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

Issue 321573002: Remove CompositingUpdateAfterStyleChange (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 // If this is set to false, the layout size will need to be explicitly set b y the owner. 109 // If this is set to false, the layout size will need to be explicitly set b y the owner.
110 // E.g. WebViewImpl sets its mainFrame's layout size manually 110 // E.g. WebViewImpl sets its mainFrame's layout size manually
111 void setLayoutSizeFixedToFrameSize(bool isFixed) { m_layoutSizeFixedToFrameS ize = isFixed; } 111 void setLayoutSizeFixedToFrameSize(bool isFixed) { m_layoutSizeFixedToFrameS ize = isFixed; }
112 bool layoutSizeFixedToFrameSize() { return m_layoutSizeFixedToFrameSize; } 112 bool layoutSizeFixedToFrameSize() { return m_layoutSizeFixedToFrameSize; }
113 113
114 bool needsFullPaintInvalidation() const { return m_doFullPaintInvalidation; } 114 bool needsFullPaintInvalidation() const { return m_doFullPaintInvalidation; }
115 115
116 void updateAcceleratedCompositingSettings(); 116 void updateAcceleratedCompositingSettings();
117 117
118 void recalcOverflowAfterStyleChange(); 118 void recalcOverflowAfterStyleChange();
119 void updateCompositingLayersAfterStyleChange();
120 119
121 bool hasCompositedContent() const; 120 bool hasCompositedContent() const;
122 bool isEnclosedInCompositingLayer() const; 121 bool isEnclosedInCompositingLayer() const;
123 122
124 void resetScrollbars(); 123 void resetScrollbars();
125 void prepareForDetach(); 124 void prepareForDetach();
126 void detachCustomScrollbars(); 125 void detachCustomScrollbars();
127 virtual void recalculateScrollbarOverlayStyle(); 126 virtual void recalculateScrollbarOverlayStyle();
128 127
129 void clear(); 128 void clear();
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue); 558 m_view->setCanInvalidatePaintDuringPerformLayout(m_originalValue);
560 } 559 }
561 private: 560 private:
562 FrameView* m_view; 561 FrameView* m_view;
563 bool m_originalValue; 562 bool m_originalValue;
564 }; 563 };
565 564
566 } // namespace WebCore 565 } // namespace WebCore
567 566
568 #endif // FrameView_h 567 #endif // FrameView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698