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

Side by Side Diff: base/win/wrapped_window_proc.cc

Issue 20265004: Update include paths in base for base/process changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge ToT Created 7 years, 4 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « base/win/scoped_process_information_unittest.cc ('k') | chrome/browser/media/webrtc_browsertest_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698