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 <stddef.h> | 5 #include <stddef.h> |
6 #include <stdlib.h> | 6 #include <stdlib.h> |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
13 #include "base/metrics/histogram_macros.h" | 13 #include "base/metrics/histogram_macros.h" |
14 #include "base/metrics/statistics_recorder.h" | 14 #include "base/metrics/statistics_recorder.h" |
15 #include "base/rand_util.h" | 15 #include "base/rand_util.h" |
16 #include "base/run_loop.h" | 16 #include "base/run_loop.h" |
17 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
18 #include "base/strings/stringprintf.h" | 18 #include "base/strings/stringprintf.h" |
19 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" | 19 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" |
20 #include "base/threading/platform_thread.h" | 20 #include "base/threading/platform_thread.h" |
21 #include "base/trace_event/trace_event.h" | 21 #include "base/trace_event/trace_event.h" |
22 #include "build/build_config.h" | 22 #include "build/build_config.h" |
23 #include "content/child/child_process.h" | 23 #include "content/child/child_process.h" |
24 #include "content/common/content_constants_internal.h" | 24 #include "content/common/content_constants_internal.h" |
25 #include "content/common/gpu_host_messages.h" | |
26 #include "content/gpu/gpu_child_thread.h" | 25 #include "content/gpu/gpu_child_thread.h" |
27 #include "content/gpu/gpu_process.h" | 26 #include "content/gpu/gpu_process.h" |
28 #include "content/public/common/content_client.h" | 27 #include "content/public/common/content_client.h" |
29 #include "content/public/common/content_switches.h" | 28 #include "content/public/common/content_switches.h" |
30 #include "content/public/common/main_function_params.h" | 29 #include "content/public/common/main_function_params.h" |
31 #include "content/public/common/result_codes.h" | 30 #include "content/public/common/result_codes.h" |
32 #include "gpu/command_buffer/service/gpu_switches.h" | 31 #include "gpu/command_buffer/service/gpu_switches.h" |
33 #include "gpu/config/gpu_driver_bug_list.h" | 32 #include "gpu/config/gpu_driver_bug_list.h" |
34 #include "gpu/config/gpu_info_collector.h" | 33 #include "gpu/config/gpu_info_collector.h" |
35 #include "gpu/config/gpu_switches.h" | 34 #include "gpu/config/gpu_switches.h" |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 return true; | 349 return true; |
351 } | 350 } |
352 | 351 |
353 return false; | 352 return false; |
354 } | 353 } |
355 #endif // defined(OS_WIN) | 354 #endif // defined(OS_WIN) |
356 | 355 |
357 } // namespace. | 356 } // namespace. |
358 | 357 |
359 } // namespace content | 358 } // namespace content |
OLD | NEW |