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

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

Issue 949293002: Implement a poor man's PostAfterStartupTask() function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
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 "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/metrics/field_trial.h" 11 #include "base/metrics/field_trial.h"
12 #include "base/metrics/histogram.h" 12 #include "base/metrics/histogram.h"
13 #include "base/pending_task.h" 13 #include "base/pending_task.h"
14 #include "base/power_monitor/power_monitor.h" 14 #include "base/power_monitor/power_monitor.h"
15 #include "base/power_monitor/power_monitor_device_source.h" 15 #include "base/power_monitor/power_monitor_device_source.h"
16 #include "base/process/process_metrics.h" 16 #include "base/process/process_metrics.h"
17 #include "base/run_loop.h" 17 #include "base/run_loop.h"
18 #include "base/strings/string_number_conversions.h" 18 #include "base/strings/string_number_conversions.h"
19 #include "base/system_monitor/system_monitor.h" 19 #include "base/system_monitor/system_monitor.h"
20 #include "base/thread_task_runner_handle.h" 20 #include "base/thread_task_runner_handle.h"
21 #include "base/threading/thread_restrictions.h" 21 #include "base/threading/thread_restrictions.h"
22 #include "base/timer/hi_res_timer_manager.h" 22 #include "base/timer/hi_res_timer_manager.h"
23 #include "base/trace_event/trace_event.h" 23 #include "base/trace_event/trace_event.h"
24 #include "content/browser/after_startup_task_poster_impl.h"
24 #include "content/browser/browser_thread_impl.h" 25 #include "content/browser/browser_thread_impl.h"
25 #include "content/browser/device_sensors/device_inertial_sensor_service.h" 26 #include "content/browser/device_sensors/device_inertial_sensor_service.h"
26 #include "content/browser/download/save_file_manager.h" 27 #include "content/browser/download/save_file_manager.h"
27 #include "content/browser/gamepad/gamepad_service.h" 28 #include "content/browser/gamepad/gamepad_service.h"
28 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" 29 #include "content/browser/gpu/browser_gpu_channel_host_factory.h"
29 #include "content/browser/gpu/compositor_util.h" 30 #include "content/browser/gpu/compositor_util.h"
30 #include "content/browser/gpu/gpu_data_manager_impl.h" 31 #include "content/browser/gpu/gpu_data_manager_impl.h"
31 #include "content/browser/gpu/gpu_process_host.h" 32 #include "content/browser/gpu/gpu_process_host.h"
32 #include "content/browser/gpu/gpu_process_host_ui_shim.h" 33 #include "content/browser/gpu/gpu_process_host_ui_shim.h"
33 #include "content/browser/histogram_synchronizer.h" 34 #include "content/browser/histogram_synchronizer.h"
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 580
580 #if defined(TCMALLOC_TRACE_MEMORY_SUPPORTED) 581 #if defined(TCMALLOC_TRACE_MEMORY_SUPPORTED)
581 trace_memory_controller_.reset(new base::trace_event::TraceMemoryController( 582 trace_memory_controller_.reset(new base::trace_event::TraceMemoryController(
582 base::MessageLoop::current()->message_loop_proxy(), 583 base::MessageLoop::current()->message_loop_proxy(),
583 ::HeapProfilerWithPseudoStackStart, ::HeapProfilerStop, 584 ::HeapProfilerWithPseudoStackStart, ::HeapProfilerStop,
584 ::GetHeapProfile)); 585 ::GetHeapProfile));
585 #endif 586 #endif
586 } 587 }
587 588
588 int BrowserMainLoop::PreCreateThreads() { 589 int BrowserMainLoop::PreCreateThreads() {
590 SetAfterStartupTaskPoster(
591 GetContentClient()->browser()->GetAfterStartupTaskPoster());
592
589 if (parts_) { 593 if (parts_) {
590 TRACE_EVENT0("startup", 594 TRACE_EVENT0("startup",
591 "BrowserMainLoop::CreateThreads:PreCreateThreads"); 595 "BrowserMainLoop::CreateThreads:PreCreateThreads");
592 result_code_ = parts_->PreCreateThreads(); 596 result_code_ = parts_->PreCreateThreads();
593 } 597 }
594 598
595 #if defined(OS_CHROMEOS) 599 #if defined(OS_CHROMEOS)
596 if (chromeos::switches::MemoryPressureHandlingEnabled()) { 600 if (chromeos::switches::MemoryPressureHandlingEnabled()) {
597 memory_pressure_observer_.reset(new base::MemoryPressureObserverChromeOS( 601 memory_pressure_observer_.reset(new base::MemoryPressureObserverChromeOS(
598 chromeos::switches::GetMemoryPressureThresholds())); 602 chromeos::switches::GetMemoryPressureThresholds()));
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 1274
1271 void BrowserMainLoop::EndStartupTracing() { 1275 void BrowserMainLoop::EndStartupTracing() {
1272 is_tracing_startup_ = false; 1276 is_tracing_startup_ = false;
1273 TracingController::GetInstance()->DisableRecording( 1277 TracingController::GetInstance()->DisableRecording(
1274 TracingController::CreateFileSink( 1278 TracingController::CreateFileSink(
1275 startup_trace_file_, 1279 startup_trace_file_,
1276 base::Bind(OnStoppedStartupTracing, startup_trace_file_))); 1280 base::Bind(OnStoppedStartupTracing, startup_trace_file_)));
1277 } 1281 }
1278 1282
1279 } // namespace content 1283 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698