| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 GPU_COMMAND_BUFFER_SERVICE_GPU_STATE_TRACER_H_ | 5 #ifndef GPU_COMMAND_BUFFER_SERVICE_GPU_STATE_TRACER_H_ |
| 6 #define GPU_COMMAND_BUFFER_SERVICE_GPU_STATE_TRACER_H_ | 6 #define GPU_COMMAND_BUFFER_SERVICE_GPU_STATE_TRACER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 | 10 |
| 11 namespace gfx { | 11 namespace gfx { |
| 12 class Size; | 12 class Size; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace gpu { | 15 namespace gpu { |
| 16 namespace gles2 { | 16 namespace gles2 { |
| 17 | 17 |
| 18 struct ContextState; | 18 struct ContextState; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 30 explicit GPUStateTracer(const ContextState* state); | 30 explicit GPUStateTracer(const ContextState* state); |
| 31 | 31 |
| 32 const ContextState* state_; | 32 const ContextState* state_; |
| 33 DISALLOW_COPY_AND_ASSIGN(GPUStateTracer); | 33 DISALLOW_COPY_AND_ASSIGN(GPUStateTracer); |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 } // namespace gles2 | 36 } // namespace gles2 |
| 37 } // namespace gpu | 37 } // namespace gpu |
| 38 | 38 |
| 39 #endif // GPU_COMMAND_BUFFER_SERVICE_GPU_STATE_TRACER_H_ | 39 #endif // GPU_COMMAND_BUFFER_SERVICE_GPU_STATE_TRACER_H_ |
| OLD | NEW |