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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItem.cpp

Issue 1839533002: Revert of Make GraphicsLayer the DisplayItemClient for scrollbars composited via PaintLayerCompositor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "platform/graphics/paint/DisplayItem.h" 5 #include "platform/graphics/paint/DisplayItem.h"
6 6
7 namespace blink { 7 namespace blink {
8 8
9 struct SameSizeAsDisplayItem { 9 struct SameSizeAsDisplayItem {
10 virtual ~SameSizeAsDisplayItem() { } // Allocate vtable pointer. 10 virtual ~SameSizeAsDisplayItem() { } // Allocate vtable pointer.
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 DEBUG_STRING_CASE(ScrollbarBackButtonStart); 94 DEBUG_STRING_CASE(ScrollbarBackButtonStart);
95 DEBUG_STRING_CASE(ScrollbarBackground); 95 DEBUG_STRING_CASE(ScrollbarBackground);
96 DEBUG_STRING_CASE(ScrollbarBackTrack); 96 DEBUG_STRING_CASE(ScrollbarBackTrack);
97 DEBUG_STRING_CASE(ScrollbarCorner); 97 DEBUG_STRING_CASE(ScrollbarCorner);
98 DEBUG_STRING_CASE(ScrollbarForwardButtonEnd); 98 DEBUG_STRING_CASE(ScrollbarForwardButtonEnd);
99 DEBUG_STRING_CASE(ScrollbarForwardButtonStart); 99 DEBUG_STRING_CASE(ScrollbarForwardButtonStart);
100 DEBUG_STRING_CASE(ScrollbarForwardTrack); 100 DEBUG_STRING_CASE(ScrollbarForwardTrack);
101 DEBUG_STRING_CASE(ScrollbarThumb); 101 DEBUG_STRING_CASE(ScrollbarThumb);
102 DEBUG_STRING_CASE(ScrollbarTickmarks); 102 DEBUG_STRING_CASE(ScrollbarTickmarks);
103 DEBUG_STRING_CASE(ScrollbarTrackBackground); 103 DEBUG_STRING_CASE(ScrollbarTrackBackground);
104 DEBUG_STRING_CASE(ScrollbarCompositedScrollbar);
105 DEBUG_STRING_CASE(SelectionTint); 104 DEBUG_STRING_CASE(SelectionTint);
106 DEBUG_STRING_CASE(TableCellBackgroundFromColumnGroup); 105 DEBUG_STRING_CASE(TableCellBackgroundFromColumnGroup);
107 DEBUG_STRING_CASE(TableCellBackgroundFromColumn); 106 DEBUG_STRING_CASE(TableCellBackgroundFromColumn);
108 DEBUG_STRING_CASE(TableCellBackgroundFromSection); 107 DEBUG_STRING_CASE(TableCellBackgroundFromSection);
109 DEBUG_STRING_CASE(TableCellBackgroundFromRow); 108 DEBUG_STRING_CASE(TableCellBackgroundFromRow);
110 DEBUG_STRING_CASE(VideoBitmap); 109 DEBUG_STRING_CASE(VideoBitmap);
111 DEBUG_STRING_CASE(WebPlugin); 110 DEBUG_STRING_CASE(WebPlugin);
112 DEBUG_STRING_CASE(WebFont); 111 DEBUG_STRING_CASE(WebFont);
113 112
114 DEFAULT_CASE; 113 DEFAULT_CASE;
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 stringBuilder.append('"'); 248 stringBuilder.append('"');
250 if (m_skippedCache) 249 if (m_skippedCache)
251 stringBuilder.append(", skippedCache: true"); 250 stringBuilder.append(", skippedCache: true");
252 if (m_scope) 251 if (m_scope)
253 stringBuilder.append(String::format(", scope: %d", m_scope)); 252 stringBuilder.append(String::format(", scope: %d", m_scope));
254 } 253 }
255 254
256 #endif 255 #endif
257 256
258 } // namespace blink 257 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/DisplayItem.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698