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

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

Issue 2683913002: Enable startup tracing from command line flags in components/tracing (Closed)
Patch Set: Rebase. Created 3 years, 10 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 | « content/app/content_main_runner.cc ('k') | content/browser/browser_main_runner.cc » ('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 8
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 28 matching lines...) Expand all
39 #include "base/task_scheduler/task_traits.h" 39 #include "base/task_scheduler/task_traits.h"
40 #include "base/threading/sequenced_worker_pool.h" 40 #include "base/threading/sequenced_worker_pool.h"
41 #include "base/threading/thread_restrictions.h" 41 #include "base/threading/thread_restrictions.h"
42 #include "base/threading/thread_task_runner_handle.h" 42 #include "base/threading/thread_task_runner_handle.h"
43 #include "base/time/time.h" 43 #include "base/time/time.h"
44 #include "base/timer/hi_res_timer_manager.h" 44 #include "base/timer/hi_res_timer_manager.h"
45 #include "base/trace_event/memory_dump_manager.h" 45 #include "base/trace_event/memory_dump_manager.h"
46 #include "base/trace_event/trace_event.h" 46 #include "base/trace_event/trace_event.h"
47 #include "build/build_config.h" 47 #include "build/build_config.h"
48 #include "components/discardable_memory/service/discardable_shared_memory_manage r.h" 48 #include "components/discardable_memory/service/discardable_shared_memory_manage r.h"
49 #include "components/tracing/browser/trace_config_file.h"
50 #include "components/tracing/common/process_metrics_memory_dump_provider.h" 49 #include "components/tracing/common/process_metrics_memory_dump_provider.h"
50 #include "components/tracing/common/trace_config_file.h"
51 #include "components/tracing/common/trace_to_console.h" 51 #include "components/tracing/common/trace_to_console.h"
52 #include "components/tracing/common/tracing_switches.h" 52 #include "components/tracing/common/tracing_switches.h"
53 #include "content/browser/audio_manager_thread.h" 53 #include "content/browser/audio_manager_thread.h"
54 #include "content/browser/browser_thread_impl.h" 54 #include "content/browser/browser_thread_impl.h"
55 #include "content/browser/dom_storage/dom_storage_area.h" 55 #include "content/browser/dom_storage/dom_storage_area.h"
56 #include "content/browser/download/download_resource_handler.h" 56 #include "content/browser/download/download_resource_handler.h"
57 #include "content/browser/download/save_file_manager.h" 57 #include "content/browser/download/save_file_manager.h"
58 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" 58 #include "content/browser/gpu/browser_gpu_channel_host_factory.h"
59 #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h" 59 #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h"
60 #include "content/browser/gpu/compositor_util.h" 60 #include "content/browser/gpu/compositor_util.h"
(...skipping 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1796 audio_thread_->task_runner(), audio_thread_->worker_task_runner(), 1796 audio_thread_->task_runner(), audio_thread_->worker_task_runner(),
1797 MediaInternals::GetInstance()); 1797 MediaInternals::GetInstance());
1798 } 1798 }
1799 CHECK(audio_manager_); 1799 CHECK(audio_manager_);
1800 1800
1801 audio_system_ = media::AudioSystemImpl::Create(audio_manager_.get()); 1801 audio_system_ = media::AudioSystemImpl::Create(audio_manager_.get());
1802 CHECK(audio_system_); 1802 CHECK(audio_system_);
1803 } 1803 }
1804 1804
1805 } // namespace content 1805 } // namespace content
OLDNEW
« no previous file with comments | « content/app/content_main_runner.cc ('k') | content/browser/browser_main_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698