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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 1508223005: Client side display item cache flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ScrollbarTheme
Patch Set: Try performance 2 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com) 5 * (C) 2004 Allan Sandfeld Jensen (kde@carewolf.com)
6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2009 Google Inc. All rights reserved. 7 * Copyright (C) 2009 Google Inc. All rights reserved.
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 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after
1935 // This stores the paint invalidation rect from the previous frame. This rec t does *not* account for composited scrolling. See 1935 // This stores the paint invalidation rect from the previous frame. This rec t does *not* account for composited scrolling. See
1936 // adjustInvalidationRectForCompositedScrolling(). 1936 // adjustInvalidationRectForCompositedScrolling().
1937 LayoutRect m_previousPaintInvalidationRect; 1937 LayoutRect m_previousPaintInvalidationRect;
1938 1938
1939 // This stores the position in the paint invalidation backing's coordinate. 1939 // This stores the position in the paint invalidation backing's coordinate.
1940 // It is used to detect layoutObject shifts that forces a full invalidation. 1940 // It is used to detect layoutObject shifts that forces a full invalidation.
1941 // This point does *not* account for composited scrolling. See adjustInvalid ationRectForCompositedScrolling(). 1941 // This point does *not* account for composited scrolling. See adjustInvalid ationRectForCompositedScrolling().
1942 // For slimmingPaintInvalidation, this stores the previous paint offset. 1942 // For slimmingPaintInvalidation, this stores the previous paint offset.
1943 // TODO(wangxianzhu): Rename this to m_previousPaintOffset when we enable sl immingPaintInvalidation. 1943 // TODO(wangxianzhu): Rename this to m_previousPaintOffset when we enable sl immingPaintInvalidation.
1944 LayoutPoint m_previousPositionFromPaintInvalidationBacking; 1944 LayoutPoint m_previousPositionFromPaintInvalidationBacking;
1945
1946 DISPLAY_ITEM_CACHE_STATUS_IMPLEMENTATION
1945 }; 1947 };
1946 1948
1947 // FIXME: remove this once the layout object lifecycle ASSERTS are no longer hit . 1949 // FIXME: remove this once the layout object lifecycle ASSERTS are no longer hit .
1948 class DeprecatedDisableModifyLayoutTreeStructureAsserts { 1950 class DeprecatedDisableModifyLayoutTreeStructureAsserts {
1949 STACK_ALLOCATED(); 1951 STACK_ALLOCATED();
1950 WTF_MAKE_NONCOPYABLE(DeprecatedDisableModifyLayoutTreeStructureAsserts); 1952 WTF_MAKE_NONCOPYABLE(DeprecatedDisableModifyLayoutTreeStructureAsserts);
1951 public: 1953 public:
1952 DeprecatedDisableModifyLayoutTreeStructureAsserts(); 1954 DeprecatedDisableModifyLayoutTreeStructureAsserts();
1953 1955
1954 static bool canModifyLayoutTreeStateInAnyState(); 1956 static bool canModifyLayoutTreeStateInAnyState();
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
2173 void showTree(const blink::LayoutObject*); 2175 void showTree(const blink::LayoutObject*);
2174 void showLineTree(const blink::LayoutObject*); 2176 void showLineTree(const blink::LayoutObject*);
2175 void showLayoutTree(const blink::LayoutObject* object1); 2177 void showLayoutTree(const blink::LayoutObject* object1);
2176 // We don't make object2 an optional parameter so that showLayoutTree 2178 // We don't make object2 an optional parameter so that showLayoutTree
2177 // can be called from gdb easily. 2179 // can be called from gdb easily.
2178 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2); 2180 void showLayoutTree(const blink::LayoutObject* object1, const blink::LayoutObjec t* object2);
2179 2181
2180 #endif 2182 #endif
2181 2183
2182 #endif // LayoutObject_h 2184 #endif // LayoutObject_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698