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

Side by Side Diff: chrome/browser/chrome_browser_main.cc

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 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 "chrome/browser/chrome_browser_main.h" 5 #include "chrome/browser/chrome_browser_main.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <set> 10 #include <set>
(...skipping 12 matching lines...) Expand all
23 #include "base/files/file_util.h" 23 #include "base/files/file_util.h"
24 #include "base/logging.h" 24 #include "base/logging.h"
25 #include "base/memory/ptr_util.h" 25 #include "base/memory/ptr_util.h"
26 #include "base/message_loop/message_loop.h" 26 #include "base/message_loop/message_loop.h"
27 #include "base/metrics/field_trial.h" 27 #include "base/metrics/field_trial.h"
28 #include "base/metrics/histogram_macros.h" 28 #include "base/metrics/histogram_macros.h"
29 #include "base/path_service.h" 29 #include "base/path_service.h"
30 #include "base/profiler/scoped_tracker.h" 30 #include "base/profiler/scoped_tracker.h"
31 #include "base/profiler/stack_sampling_profiler.h" 31 #include "base/profiler/stack_sampling_profiler.h"
32 #include "base/run_loop.h" 32 #include "base/run_loop.h"
33 #include "base/sequenced_task_runner.h"
33 #include "base/strings/string16.h" 34 #include "base/strings/string16.h"
34 #include "base/strings/string_number_conversions.h" 35 #include "base/strings/string_number_conversions.h"
35 #include "base/strings/string_piece.h" 36 #include "base/strings/string_piece.h"
36 #include "base/strings/sys_string_conversions.h" 37 #include "base/strings/sys_string_conversions.h"
37 #include "base/strings/utf_string_conversions.h" 38 #include "base/strings/utf_string_conversions.h"
38 #include "base/sys_info.h" 39 #include "base/sys_info.h"
39 #include "base/task_scheduler/post_task.h" 40 #include "base/task_scheduler/post_task.h"
40 #include "base/threading/platform_thread.h" 41 #include "base/threading/platform_thread.h"
41 #include "base/time/default_tick_clock.h" 42 #include "base/time/default_tick_clock.h"
42 #include "base/time/time.h" 43 #include "base/time/time.h"
(...skipping 2023 matching lines...) Expand 10 before | Expand all | Expand 10 after
2066 chromeos::CrosSettings::Shutdown(); 2067 chromeos::CrosSettings::Shutdown();
2067 #endif // defined(OS_CHROMEOS) 2068 #endif // defined(OS_CHROMEOS)
2068 #endif // defined(OS_ANDROID) 2069 #endif // defined(OS_ANDROID)
2069 } 2070 }
2070 2071
2071 // Public members: 2072 // Public members:
2072 2073
2073 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { 2074 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) {
2074 chrome_extra_parts_.push_back(parts); 2075 chrome_extra_parts_.push_back(parts);
2075 } 2076 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698