OLD | NEW |
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 CONTENT_RENDERER_PEPPER_PEPPER_COMPOSITOR_HOST_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_COMPOSITOR_HOST_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_COMPOSITOR_HOST_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_COMPOSITOR_HOST_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
10 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
11 #include "ppapi/host/host_message_context.h" | 14 #include "ppapi/host/host_message_context.h" |
12 #include "ppapi/host/resource_host.h" | 15 #include "ppapi/host/resource_host.h" |
13 #include "ppapi/shared_impl/compositor_layer_data.h" | 16 #include "ppapi/shared_impl/compositor_layer_data.h" |
14 | 17 |
15 namespace base { | 18 namespace base { |
16 class SharedMemory; | 19 class SharedMemory; |
17 } // namespace | 20 } // namespace |
18 | 21 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 ppapi::host::ReplyMessageContext commit_layers_reply_context_; | 101 ppapi::host::ReplyMessageContext commit_layers_reply_context_; |
99 | 102 |
100 base::WeakPtrFactory<PepperCompositorHost> weak_factory_; | 103 base::WeakPtrFactory<PepperCompositorHost> weak_factory_; |
101 | 104 |
102 DISALLOW_COPY_AND_ASSIGN(PepperCompositorHost); | 105 DISALLOW_COPY_AND_ASSIGN(PepperCompositorHost); |
103 }; | 106 }; |
104 | 107 |
105 } // namespace content | 108 } // namespace content |
106 | 109 |
107 #endif // CONTENT_RENDERER_PEPPER_PEPPER_COMPOSITOR_HOST_H_ | 110 #endif // CONTENT_RENDERER_PEPPER_PEPPER_COMPOSITOR_HOST_H_ |
OLD | NEW |