OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 MEDIA_TOOLS_SHADER_BENCH_WINDOW_H_ | 5 #ifndef MEDIA_TOOLS_SHADER_BENCH_WINDOW_H_ |
6 #define MEDIA_TOOLS_SHADER_BENCH_WINDOW_H_ | 6 #define MEDIA_TOOLS_SHADER_BENCH_WINDOW_H_ |
7 | 7 |
8 #include "gfx/native_widget_types.h" | 8 #include "ui/gfx/native_widget_types.h" |
9 | 9 |
10 class Painter; | 10 class Painter; |
11 class Task; | 11 class Task; |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 | 14 |
15 class Window { | 15 class Window { |
16 public: | 16 public: |
17 Window(int width, int height); | 17 Window(int width, int height); |
18 | 18 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 | 51 |
52 // This window's native handle. | 52 // This window's native handle. |
53 gfx::NativeWindow window_handle_; | 53 gfx::NativeWindow window_handle_; |
54 | 54 |
55 DISALLOW_COPY_AND_ASSIGN(Window); | 55 DISALLOW_COPY_AND_ASSIGN(Window); |
56 }; | 56 }; |
57 | 57 |
58 } // namespace media | 58 } // namespace media |
59 | 59 |
60 #endif // MEDIA_TOOLS_SHADER_BENCH_WINDOW_H_ | 60 #endif // MEDIA_TOOLS_SHADER_BENCH_WINDOW_H_ |
OLD | NEW |