| 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_LAYER_H_ | 5 #ifndef UI_GFX_COMPOSITOR_LAYER_H_ |
| 6 #define UI_GFX_COMPOSITOR_LAYER_H_ | 6 #define UI_GFX_COMPOSITOR_LAYER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/message_loop.h" | 15 #include "base/message_loop.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebContentLayerClient
.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebContentLa
yerClient.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebLayer.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayer.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebLayerClient.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebLayerClie
nt.h" |
| 19 #include "ui/gfx/rect.h" | 19 #include "ui/gfx/rect.h" |
| 20 #include "ui/gfx/transform.h" | 20 #include "ui/gfx/transform.h" |
| 21 #include "ui/gfx/compositor/compositor.h" | 21 #include "ui/gfx/compositor/compositor.h" |
| 22 #include "ui/gfx/compositor/layer_animation_delegate.h" | 22 #include "ui/gfx/compositor/layer_animation_delegate.h" |
| 23 #include "ui/gfx/compositor/layer_delegate.h" | 23 #include "ui/gfx/compositor/layer_delegate.h" |
| 24 | 24 |
| 25 class SkCanvas; | 25 class SkCanvas; |
| 26 | 26 |
| 27 namespace ui { | 27 namespace ui { |
| 28 | 28 |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 bool web_layer_is_accelerated_; | 337 bool web_layer_is_accelerated_; |
| 338 bool show_debug_borders_; | 338 bool show_debug_borders_; |
| 339 #endif | 339 #endif |
| 340 | 340 |
| 341 DISALLOW_COPY_AND_ASSIGN(Layer); | 341 DISALLOW_COPY_AND_ASSIGN(Layer); |
| 342 }; | 342 }; |
| 343 | 343 |
| 344 } // namespace ui | 344 } // namespace ui |
| 345 | 345 |
| 346 #endif // UI_GFX_COMPOSITOR_LAYER_H_ | 346 #endif // UI_GFX_COMPOSITOR_LAYER_H_ |
| OLD | NEW |