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 "chrome/common/child_process_logging.h" | 5 #include "chrome/common/child_process_logging.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/string_util.h" | |
11 #include "base/stringprintf.h" | |
12 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| 11 #include "base/strings/string_util.h" |
| 12 #include "base/strings/stringprintf.h" |
13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "chrome/common/chrome_constants.h" | 14 #include "chrome/common/chrome_constants.h" |
15 #include "chrome/common/metrics/variations/variations_util.h" | 15 #include "chrome/common/metrics/variations/variations_util.h" |
16 #include "chrome/installer/util/google_update_settings.h" | 16 #include "chrome/installer/util/google_update_settings.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 #include "gpu/config/gpu_info.h" | 18 #include "gpu/config/gpu_info.h" |
19 | 19 |
20 namespace child_process_logging { | 20 namespace child_process_logging { |
21 | 21 |
22 namespace { | 22 namespace { |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 return; | 250 return; |
251 set_number_of_views = reinterpret_cast<MainSetNumberOfViews>( | 251 set_number_of_views = reinterpret_cast<MainSetNumberOfViews>( |
252 GetProcAddress(exe_module, "SetNumberOfViews")); | 252 GetProcAddress(exe_module, "SetNumberOfViews")); |
253 if (!set_number_of_views) | 253 if (!set_number_of_views) |
254 return; | 254 return; |
255 } | 255 } |
256 (set_number_of_views)(number_of_views); | 256 (set_number_of_views)(number_of_views); |
257 } | 257 } |
258 | 258 |
259 } // namespace child_process_logging | 259 } // namespace child_process_logging |
OLD | NEW |