| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ScopeRecorder_h | |
| 6 #define ScopeRecorder_h | |
| 7 | |
| 8 #include "core/CoreExport.h" | |
| 9 #include "platform/graphics/paint/DisplayItem.h" | |
| 10 #include "wtf/Allocator.h" | |
| 11 | |
| 12 namespace blink { | |
| 13 | |
| 14 class GraphicsContext; | |
| 15 class LayoutObject; | |
| 16 class PaintController; | |
| 17 | |
| 18 class CORE_EXPORT ScopeRecorder { | |
| 19 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW(); | |
| 20 public: | |
| 21 ScopeRecorder(GraphicsContext&); | |
| 22 | |
| 23 ~ScopeRecorder(); | |
| 24 | |
| 25 private: | |
| 26 PaintController& m_paintController; | |
| 27 }; | |
| 28 | |
| 29 } // namespace blink | |
| 30 | |
| 31 #endif // ScopeRecorder_h | |
| OLD | NEW |