| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/common/content_export.h" | 22 #include "content/common/content_export.h" |
| 23 #include "content/renderer/gpu/compositor_dependencies.h" | 23 #include "content/renderer/gpu/compositor_dependencies.h" |
| 24 #include "third_party/WebKit/public/platform/WebLayerTreeView.h" | 24 #include "third_party/WebKit/public/platform/WebLayerTreeView.h" |
| 25 #include "ui/gfx/geometry/rect.h" | 25 #include "ui/gfx/geometry/rect.h" |
| 26 | 26 |
| 27 namespace base { | 27 namespace base { |
| 28 class CommandLine; | 28 class CommandLine; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace cc { | 31 namespace cc { |
| 32 class CopyOutputRequest; | |
| 33 class InputHandler; | 32 class InputHandler; |
| 34 class Layer; | 33 class Layer; |
| 35 class LayerTreeHost; | 34 class LayerTreeHost; |
| 36 namespace proto { | 35 namespace proto { |
| 37 class CompositorMessage; | 36 class CompositorMessage; |
| 38 } | 37 } |
| 39 } | 38 } |
| 40 | 39 |
| 41 namespace gfx { | 40 namespace gfx { |
| 42 class ColorSpace; | 41 class ColorSpace; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 blink::WebLayoutAndPaintAsyncCallback* layout_and_paint_async_callback_; | 229 blink::WebLayoutAndPaintAsyncCallback* layout_and_paint_async_callback_; |
| 231 | 230 |
| 232 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_; | 231 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_; |
| 233 | 232 |
| 234 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; | 233 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; |
| 235 }; | 234 }; |
| 236 | 235 |
| 237 } // namespace content | 236 } // namespace content |
| 238 | 237 |
| 239 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 238 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| OLD | NEW |