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

Side by Side Diff: content/browser/browser_main_loop.cc

Issue 1841153002: BrowserCompositorMac, ResizeLock, DelegatedFrameHost => content/browser/renderer_host (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Mac Build Created 4 years, 8 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
« no previous file with comments | « no previous file | content/browser/compositor/browser_compositor_view_mac.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "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
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
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
OLDNEW
« no previous file with comments | « no previous file | content/browser/compositor/browser_compositor_view_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698