OLD | NEW |
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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(ScrollbarHorizontal); | 101 DEBUG_STRING_CASE(ScrollbarHorizontal); |
102 DEBUG_STRING_CASE(ScrollbarThumb); | 102 DEBUG_STRING_CASE(ScrollbarThumb); |
103 DEBUG_STRING_CASE(ScrollbarTickmarks); | 103 DEBUG_STRING_CASE(ScrollbarTickmarks); |
104 DEBUG_STRING_CASE(ScrollbarTrackBackground); | 104 DEBUG_STRING_CASE(ScrollbarTrackBackground); |
105 DEBUG_STRING_CASE(ScrollbarVertical); | 105 DEBUG_STRING_CASE(ScrollbarVertical); |
106 DEBUG_STRING_CASE(SelectionGap); | |
107 DEBUG_STRING_CASE(SelectionTint); | 106 DEBUG_STRING_CASE(SelectionTint); |
108 DEBUG_STRING_CASE(TableCellBackgroundFromColumnGroup); | 107 DEBUG_STRING_CASE(TableCellBackgroundFromColumnGroup); |
109 DEBUG_STRING_CASE(TableCellBackgroundFromColumn); | 108 DEBUG_STRING_CASE(TableCellBackgroundFromColumn); |
110 DEBUG_STRING_CASE(TableCellBackgroundFromSection); | 109 DEBUG_STRING_CASE(TableCellBackgroundFromSection); |
111 DEBUG_STRING_CASE(TableCellBackgroundFromRow); | 110 DEBUG_STRING_CASE(TableCellBackgroundFromRow); |
112 DEBUG_STRING_CASE(VideoBitmap); | 111 DEBUG_STRING_CASE(VideoBitmap); |
113 DEBUG_STRING_CASE(WebPlugin); | 112 DEBUG_STRING_CASE(WebPlugin); |
114 DEBUG_STRING_CASE(WebFont); | 113 DEBUG_STRING_CASE(WebFont); |
115 | 114 |
116 DEFAULT_CASE; | 115 DEFAULT_CASE; |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 stringBuilder.append('"'); | 232 stringBuilder.append('"'); |
234 if (m_skippedCache) | 233 if (m_skippedCache) |
235 stringBuilder.append(", skippedCache: true"); | 234 stringBuilder.append(", skippedCache: true"); |
236 if (m_scope) | 235 if (m_scope) |
237 stringBuilder.append(String::format(", scope: %d", m_scope)); | 236 stringBuilder.append(String::format(", scope: %d", m_scope)); |
238 } | 237 } |
239 | 238 |
240 #endif | 239 #endif |
241 | 240 |
242 } // namespace blink | 241 } // namespace blink |
OLD | NEW |