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

Side by Side Diff: third_party/WebKit/Source/core/paint/TransformRecorder.h

Issue 1497873002: Make DisplayItemClient an interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 // 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 #ifndef TransformRecorder_h 5 #ifndef TransformRecorder_h
6 #define TransformRecorder_h 6 #define TransformRecorder_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "platform/graphics/paint/DisplayItem.h" 9 #include "platform/graphics/paint/DisplayItem.h"
10 #include "wtf/Allocator.h" 10 #include "wtf/Allocator.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class GraphicsContext; 14 class GraphicsContext;
15 class AffineTransform; 15 class AffineTransform;
16 16
17 class CORE_EXPORT TransformRecorder { 17 class CORE_EXPORT TransformRecorder {
18 STACK_ALLOCATED(); 18 STACK_ALLOCATED();
19 public: 19 public:
20 TransformRecorder(GraphicsContext&, const DisplayItemClientWrapper&, const A ffineTransform&); 20 TransformRecorder(GraphicsContext&, const DisplayItemClient&, const AffineTr ansform&);
21 ~TransformRecorder(); 21 ~TransformRecorder();
22 22
23 private: 23 private:
24 GraphicsContext& m_context; 24 GraphicsContext& m_context;
25 DisplayItemClientWrapper m_client; 25 const DisplayItemClient& m_client;
26 bool m_skipRecordingForIdentityTransform; 26 bool m_skipRecordingForIdentityTransform;
27 }; 27 };
28 28
29 } // namespace blink 29 } // namespace blink
30 30
31 #endif // TransformRecorder_h 31 #endif // TransformRecorder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698