OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "app/win/window_impl.h" | 5 #include "gfx/window_impl.h" |
6 | 6 |
7 #include <list> | 7 #include <list> |
8 | 8 |
9 #include "base/singleton.h" | 9 #include "base/singleton.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/win_util.h" | 11 #include "base/win_util.h" |
12 | 12 |
13 namespace app { | 13 namespace gfx { |
14 | 14 |
15 static const DWORD kWindowDefaultChildStyle = | 15 static const DWORD kWindowDefaultChildStyle = |
16 WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS; | 16 WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS; |
17 static const DWORD kWindowDefaultStyle = WS_OVERLAPPEDWINDOW; | 17 static const DWORD kWindowDefaultStyle = WS_OVERLAPPEDWINDOW; |
18 static const DWORD kWindowDefaultExStyle = 0; | 18 static const DWORD kWindowDefaultExStyle = 0; |
19 | 19 |
20 /////////////////////////////////////////////////////////////////////////////// | 20 /////////////////////////////////////////////////////////////////////////////// |
21 // WindowImpl class tracking. | 21 // WindowImpl class tracking. |
22 | 22 |
23 // Several external scripts rely explicitly on this base class name for | 23 // Several external scripts rely explicitly on this base class name for |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 class_ex.lpszClassName = name.c_str(); | 216 class_ex.lpszClassName = name.c_str(); |
217 class_ex.hIconSm = class_ex.hIcon; | 217 class_ex.hIconSm = class_ex.hIcon; |
218 ATOM atom = RegisterClassEx(&class_ex); | 218 ATOM atom = RegisterClassEx(&class_ex); |
219 DCHECK(atom); | 219 DCHECK(atom); |
220 | 220 |
221 Singleton<ClassRegistrar>()->RegisterClass(class_info, name, atom); | 221 Singleton<ClassRegistrar>()->RegisterClass(class_info, name, atom); |
222 | 222 |
223 return name; | 223 return name; |
224 } | 224 } |
225 | 225 |
226 } // namespace app | 226 } // namespace gfx |
OLD | NEW |