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

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

Issue 2219523004: CL for perf tryjob on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after
881 881
882 mutable std::unique_ptr<ClipRectsCache> m_clipRectsCache; 882 mutable std::unique_ptr<ClipRectsCache> m_clipRectsCache;
883 883
884 std::unique_ptr<PaintLayerStackingNode> m_stackingNode; 884 std::unique_ptr<PaintLayerStackingNode> m_stackingNode;
885 885
886 IntSize m_previousScrollOffsetAccumulationForPainting; 886 IntSize m_previousScrollOffsetAccumulationForPainting;
887 RefPtr<ClipRects> m_previousPaintingClipRects; 887 RefPtr<ClipRects> m_previousPaintingClipRects;
888 LayoutRect m_previousPaintDirtyRect; 888 LayoutRect m_previousPaintDirtyRect;
889 889
890 std::unique_ptr<PaintLayerRareData> m_rareData; 890 std::unique_ptr<PaintLayerRareData> m_rareData;
891
892 DISPLAY_ITEM_CACHE_STATUS_IMPLEMENTATION
891 }; 893 };
892 894
893 } // namespace blink 895 } // namespace blink
894 896
895 #ifndef NDEBUG 897 #ifndef NDEBUG
896 // Outside the WebCore namespace for ease of invocation from gdb. 898 // Outside the WebCore namespace for ease of invocation from gdb.
897 void showLayerTree(const blink::PaintLayer*); 899 void showLayerTree(const blink::PaintLayer*);
898 void showLayerTree(const blink::LayoutObject*); 900 void showLayerTree(const blink::LayoutObject*);
899 #endif 901 #endif
900 902
901 #endif // Layer_h 903 #endif // Layer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698