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

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

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/browser_process_platform_part_chromeos.h" 5 #include "chrome/browser/browser_process_platform_part_chromeos.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/ptr_util.h"
8 #include "base/time/default_tick_clock.h" 9 #include "base/time/default_tick_clock.h"
9 #include "base/time/tick_clock.h" 10 #include "base/time/tick_clock.h"
10 #include "chrome/browser/browser_process.h" 11 #include "chrome/browser/browser_process.h"
11 #include "chrome/browser/chromeos/login/session/chrome_session_manager.h" 12 #include "chrome/browser/chromeos/login/session/chrome_session_manager.h"
12 #include "chrome/browser/chromeos/login/users/chrome_user_manager_impl.h" 13 #include "chrome/browser/chromeos/login/users/chrome_user_manager_impl.h"
13 #include "chrome/browser/chromeos/net/delay_network_call.h" 14 #include "chrome/browser/chromeos/net/delay_network_call.h"
14 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" 15 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h"
15 #include "chrome/browser/chromeos/profiles/profile_helper.h" 16 #include "chrome/browser/chromeos/profiles/profile_helper.h"
16 #include "chrome/browser/chromeos/settings/cros_settings.h" 17 #include "chrome/browser/chromeos/settings/cros_settings.h"
17 #include "chrome/browser/chromeos/system/automatic_reboot_manager.h" 18 #include "chrome/browser/chromeos/system/automatic_reboot_manager.h"
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 151
151 void BrowserProcessPlatformPart::DestroySystemClock() { 152 void BrowserProcessPlatformPart::DestroySystemClock() {
152 system_clock_.reset(); 153 system_clock_.reset();
153 } 154 }
154 155
155 void BrowserProcessPlatformPart::CreateProfileHelper() { 156 void BrowserProcessPlatformPart::CreateProfileHelper() {
156 DCHECK(!created_profile_helper_ && !profile_helper_); 157 DCHECK(!created_profile_helper_ && !profile_helper_);
157 created_profile_helper_ = true; 158 created_profile_helper_ = true;
158 profile_helper_.reset(new chromeos::ProfileHelper()); 159 profile_helper_.reset(new chromeos::ProfileHelper());
159 } 160 }
OLDNEW
« no previous file with comments | « chrome/browser/android/blimp/blimp_client_context_factory.cc ('k') | chrome/browser/browsing_data/browsing_data_remover.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698