OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "media/tools/shader_bench/window.h" | |
6 | |
7 #include "base/task.h" | |
8 | |
9 namespace media { | |
10 | |
11 Window::Window(int width, int height) | |
12 : done_task_(NULL), | |
scherkus (not reviewing)
2010/11/30 23:36:10
nit: indent by extra 2 spaces
vrk (LEFT CHROMIUM)
2010/12/01 02:46:11
Done.
| |
13 painter_(NULL), | |
14 limit_(0), | |
15 count_(0), | |
16 running_(false) { | |
17 window_handle_ = CreateNativeWindow(width, height); | |
18 } | |
19 | |
20 } // namespace media | |
OLD | NEW |