| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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); |
| 104 DEBUG_STRING_CASE(SelectionTint); | 105 DEBUG_STRING_CASE(SelectionTint); |
| 105 DEBUG_STRING_CASE(TableCellBackgroundFromColumnGroup); | 106 DEBUG_STRING_CASE(TableCellBackgroundFromColumnGroup); |
| 106 DEBUG_STRING_CASE(TableCellBackgroundFromColumn); | 107 DEBUG_STRING_CASE(TableCellBackgroundFromColumn); |
| 107 DEBUG_STRING_CASE(TableCellBackgroundFromSection); | 108 DEBUG_STRING_CASE(TableCellBackgroundFromSection); |
| 108 DEBUG_STRING_CASE(TableCellBackgroundFromRow); | 109 DEBUG_STRING_CASE(TableCellBackgroundFromRow); |
| 109 DEBUG_STRING_CASE(VideoBitmap); | 110 DEBUG_STRING_CASE(VideoBitmap); |
| 110 DEBUG_STRING_CASE(WebPlugin); | 111 DEBUG_STRING_CASE(WebPlugin); |
| 111 DEBUG_STRING_CASE(WebFont); | 112 DEBUG_STRING_CASE(WebFont); |
| 112 | 113 |
| 113 DEFAULT_CASE; | 114 DEFAULT_CASE; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 stringBuilder.append('"'); | 249 stringBuilder.append('"'); |
| 249 if (m_skippedCache) | 250 if (m_skippedCache) |
| 250 stringBuilder.append(", skippedCache: true"); | 251 stringBuilder.append(", skippedCache: true"); |
| 251 if (m_scope) | 252 if (m_scope) |
| 252 stringBuilder.append(String::format(", scope: %d", m_scope)); | 253 stringBuilder.append(String::format(", scope: %d", m_scope)); |
| 253 } | 254 } |
| 254 | 255 |
| 255 #endif | 256 #endif |
| 256 | 257 |
| 257 } // namespace blink | 258 } // namespace blink |
| OLD | NEW |