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 "content/browser/browser_main_loop.h" | 5 #include "content/browser/browser_main_loop.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 #include "content/browser/android/tracing_controller_android.h" | 105 #include "content/browser/android/tracing_controller_android.h" |
106 #include "content/browser/screen_orientation/screen_orientation_delegate_android
.h" | 106 #include "content/browser/screen_orientation/screen_orientation_delegate_android
.h" |
107 #include "content/public/browser/screen_orientation_provider.h" | 107 #include "content/public/browser/screen_orientation_provider.h" |
108 #include "ui/gl/gl_surface.h" | 108 #include "ui/gl/gl_surface.h" |
109 #endif | 109 #endif |
110 | 110 |
111 #if defined(OS_MACOSX) | 111 #if defined(OS_MACOSX) |
112 #include "base/memory/memory_pressure_monitor_mac.h" | 112 #include "base/memory/memory_pressure_monitor_mac.h" |
113 #include "content/browser/bootstrap_sandbox_manager_mac.h" | 113 #include "content/browser/bootstrap_sandbox_manager_mac.h" |
114 #include "content/browser/cocoa/system_hotkey_helper_mac.h" | 114 #include "content/browser/cocoa/system_hotkey_helper_mac.h" |
115 #include "content/browser/compositor/browser_compositor_view_mac.h" | |
116 #include "content/browser/mach_broker_mac.h" | 115 #include "content/browser/mach_broker_mac.h" |
| 116 #include "content/browser/renderer_host/browser_compositor_view_mac.h" |
117 #include "content/browser/theme_helper_mac.h" | 117 #include "content/browser/theme_helper_mac.h" |
118 #include "ui/accelerated_widget_mac/window_resize_helper_mac.h" | 118 #include "ui/accelerated_widget_mac/window_resize_helper_mac.h" |
119 #endif | 119 #endif |
120 | 120 |
121 #if defined(USE_OZONE) | 121 #if defined(USE_OZONE) |
122 #include "ui/ozone/public/client_native_pixmap_factory.h" | 122 #include "ui/ozone/public/client_native_pixmap_factory.h" |
123 #endif | 123 #endif |
124 | 124 |
125 #if defined(OS_WIN) | 125 #if defined(OS_WIN) |
126 #include <windows.h> | 126 #include <windows.h> |
(...skipping 1316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1443 DCHECK(is_tracing_startup_for_duration_); | 1443 DCHECK(is_tracing_startup_for_duration_); |
1444 | 1444 |
1445 is_tracing_startup_for_duration_ = false; | 1445 is_tracing_startup_for_duration_ = false; |
1446 TracingController::GetInstance()->StopTracing( | 1446 TracingController::GetInstance()->StopTracing( |
1447 TracingController::CreateFileSink( | 1447 TracingController::CreateFileSink( |
1448 startup_trace_file_, | 1448 startup_trace_file_, |
1449 base::Bind(OnStoppedStartupTracing, startup_trace_file_))); | 1449 base::Bind(OnStoppedStartupTracing, startup_trace_file_))); |
1450 } | 1450 } |
1451 | 1451 |
1452 } // namespace content | 1452 } // namespace content |
OLD | NEW |