| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_ | 5 #ifndef UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_ |
| 6 #define UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_ | 6 #define UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "ui/gfx/compositor/compositor.h" | 12 #include "ui/gfx/compositor/compositor.h" |
| 13 #include "ui/gfx/size.h" | 13 #include "ui/gfx/size.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebLayer.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayer.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebLayerClient.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayerClie
nt.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebLayerTreeView.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayerTree
View.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebLayerTreeViewClien
t.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayerTree
ViewClient.h" |
| 18 | 18 |
| 19 namespace gfx { | 19 namespace gfx { |
| 20 class Rect; | 20 class Rect; |
| 21 class GLContext; | 21 class GLContext; |
| 22 class GLSurface; | 22 class GLSurface; |
| 23 class GLShareGroup; | 23 class GLShareGroup; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace ui { | 26 namespace ui { |
| 27 | 27 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 // See description above SetTestContextEnabled. | 126 // See description above SetTestContextEnabled. |
| 127 static bool test_context_enabled_; | 127 static bool test_context_enabled_; |
| 128 | 128 |
| 129 DISALLOW_COPY_AND_ASSIGN(CompositorCC); | 129 DISALLOW_COPY_AND_ASSIGN(CompositorCC); |
| 130 }; | 130 }; |
| 131 | 131 |
| 132 } // namespace ui | 132 } // namespace ui |
| 133 | 133 |
| 134 #endif // UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_ | 134 #endif // UI_GFX_COMPOSITOR_COMPOSITOR_CC_H_ |
| OLD | NEW |