OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/win/wrapped_window_proc.h" | 5 #include "base/win/wrapped_window_proc.h" |
6 | 6 |
7 #include "base/atomicops.h" | 7 #include "base/atomicops.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/process_util.h" | 9 #include "base/process/memory.h" |
10 | 10 |
11 namespace { | 11 namespace { |
12 | 12 |
13 base::win::WinProcExceptionFilter s_exception_filter = NULL; | 13 base::win::WinProcExceptionFilter s_exception_filter = NULL; |
14 | 14 |
15 } // namespace. | 15 } // namespace. |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 namespace win { | 18 namespace win { |
19 | 19 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 class_out->lpszMenuName = menu_name; | 54 class_out->lpszMenuName = menu_name; |
55 class_out->lpszClassName = class_name; | 55 class_out->lpszClassName = class_name; |
56 class_out->hIconSm = small_icon; | 56 class_out->hIconSm = small_icon; |
57 | 57 |
58 // Check if |window_proc| is valid. | 58 // Check if |window_proc| is valid. |
59 DCHECK(class_out->hInstance != NULL); | 59 DCHECK(class_out->hInstance != NULL); |
60 } | 60 } |
61 | 61 |
62 } // namespace win | 62 } // namespace win |
63 } // namespace base | 63 } // namespace base |
OLD | NEW |