Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: gfx/window_impl.cc

Issue 2813042: Move WindowImpl to gfx so I can use it there for canvas unit tests.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gfx/window_impl.h ('k') | tools/memory_watcher/hotkey.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « gfx/window_impl.h ('k') | tools/memory_watcher/hotkey.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698