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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.h

Issue 1508223005: Client side display item cache flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ScrollbarTheme
Patch Set: Created 4 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
6 * 6 *
7 * Other contributors: 7 * Other contributors:
8 * Robert O'Callahan <roc+@cs.cmu.edu> 8 * Robert O'Callahan <roc+@cs.cmu.edu>
9 * David Baron <dbaron@fas.harvard.edu> 9 * David Baron <dbaron@fas.harvard.edu>
10 * Christian Biesinger <cbiesinger@web.de> 10 * Christian Biesinger <cbiesinger@web.de>
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 878
879 mutable OwnPtr<ClipRectsCache> m_clipRectsCache; 879 mutable OwnPtr<ClipRectsCache> m_clipRectsCache;
880 880
881 OwnPtr<PaintLayerStackingNode> m_stackingNode; 881 OwnPtr<PaintLayerStackingNode> m_stackingNode;
882 882
883 IntSize m_previousScrollOffsetAccumulationForPainting; 883 IntSize m_previousScrollOffsetAccumulationForPainting;
884 RefPtr<ClipRects> m_previousPaintingClipRects; 884 RefPtr<ClipRects> m_previousPaintingClipRects;
885 LayoutRect m_previousPaintDirtyRect; 885 LayoutRect m_previousPaintDirtyRect;
886 886
887 OwnPtr<PaintLayerRareData> m_rareData; 887 OwnPtr<PaintLayerRareData> m_rareData;
888
889 DISPLAY_ITEM_CACHE_STATUS_IMPLEMENTATION
888 }; 890 };
889 891
890 } // namespace blink 892 } // namespace blink
891 893
892 #ifndef NDEBUG 894 #ifndef NDEBUG
893 // Outside the WebCore namespace for ease of invocation from gdb. 895 // Outside the WebCore namespace for ease of invocation from gdb.
894 void showLayerTree(const blink::PaintLayer*); 896 void showLayerTree(const blink::PaintLayer*);
895 void showLayerTree(const blink::LayoutObject*); 897 void showLayerTree(const blink::LayoutObject*);
896 #endif 898 #endif
897 899
898 #endif // Layer_h 900 #endif // Layer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698