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

Side by Side Diff: sky/engine/platform/graphics/GraphicsContextCullSaver.h

Issue 746023002: Make absolute and sort all Sky headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 #ifndef GraphicsContextCullSaver_h 1 #ifndef GraphicsContextCullSaver_h
2 #define GraphicsContextCullSaver_h 2 #define GraphicsContextCullSaver_h
3 3
4 #include "platform/graphics/GraphicsContext.h" 4 #include "sky/engine/platform/graphics/GraphicsContext.h"
5 5
6 namespace blink { 6 namespace blink {
7 7
8 class FloatRect; 8 class FloatRect;
9 9
10 class GraphicsContextCullSaver { 10 class GraphicsContextCullSaver {
11 WTF_MAKE_FAST_ALLOCATED; 11 WTF_MAKE_FAST_ALLOCATED;
12 public: 12 public:
13 GraphicsContextCullSaver(GraphicsContext& context) 13 GraphicsContextCullSaver(GraphicsContext& context)
14 : m_context(context) 14 : m_context(context)
(...skipping 22 matching lines...) Expand all
37 } 37 }
38 38
39 private: 39 private:
40 GraphicsContext& m_context; 40 GraphicsContext& m_context;
41 bool m_cullApplied; 41 bool m_cullApplied;
42 }; 42 };
43 43
44 } // namespace blink 44 } // namespace blink
45 45
46 #endif // GraphicsContextCullSaver_h 46 #endif // GraphicsContextCullSaver_h
OLDNEW
« no previous file with comments | « sky/engine/platform/graphics/GraphicsContextAnnotation.h ('k') | sky/engine/platform/graphics/GraphicsContextRecorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698