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

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

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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) 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/browser_shutdown.h" 5 #include "chrome/browser/browser_shutdown.h"
6 6
7 #include <stdint.h>
8
7 #include <map> 9 #include <map>
8 #include <string> 10 #include <string>
9 11
10 #include "base/bind.h" 12 #include "base/bind.h"
11 #include "base/command_line.h" 13 #include "base/command_line.h"
12 #include "base/files/file_path.h" 14 #include "base/files/file_path.h"
13 #include "base/files/file_util.h" 15 #include "base/files/file_util.h"
14 #include "base/metrics/histogram.h" 16 #include "base/metrics/histogram.h"
15 #include "base/path_service.h" 17 #include "base/path_service.h"
16 #include "base/prefs/pref_registry_simple.h" 18 #include "base/prefs/pref_registry_simple.h"
17 #include "base/prefs/pref_service.h" 19 #include "base/prefs/pref_service.h"
18 #include "base/strings/string_number_conversions.h" 20 #include "base/strings/string_number_conversions.h"
19 #include "base/strings/stringprintf.h" 21 #include "base/strings/stringprintf.h"
20 #include "base/threading/thread.h" 22 #include "base/threading/thread.h"
21 #include "base/time/time.h" 23 #include "base/time/time.h"
24 #include "build/build_config.h"
22 #include "chrome/browser/about_flags.h" 25 #include "chrome/browser/about_flags.h"
23 #include "chrome/browser/browser_process.h" 26 #include "chrome/browser/browser_process.h"
24 #include "chrome/browser/lifetime/application_lifetime.h" 27 #include "chrome/browser/lifetime/application_lifetime.h"
25 #include "chrome/browser/profiles/profile_manager.h" 28 #include "chrome/browser/profiles/profile_manager.h"
26 #include "chrome/browser/profiles/profile_metrics.h" 29 #include "chrome/browser/profiles/profile_metrics.h"
27 #include "chrome/common/chrome_paths.h" 30 #include "chrome/common/chrome_paths.h"
28 #include "chrome/common/chrome_switches.h" 31 #include "chrome/common/chrome_switches.h"
29 #include "chrome/common/crash_keys.h" 32 #include "chrome/common/crash_keys.h"
30 #include "chrome/common/pref_names.h" 33 #include "chrome/common/pref_names.h"
31 #include "chrome/common/switch_utils.h" 34 #include "chrome/common/switch_utils.h"
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 base::trace_event::TraceConfig trace_config( 358 base::trace_event::TraceConfig trace_config(
356 command_line.GetSwitchValueASCII(switches::kTraceShutdown), ""); 359 command_line.GetSwitchValueASCII(switches::kTraceShutdown), "");
357 content::TracingController::GetInstance()->StartTracing( 360 content::TracingController::GetInstance()->StartTracing(
358 trace_config, 361 trace_config,
359 content::TracingController::StartTracingDoneCallback()); 362 content::TracingController::StartTracingDoneCallback());
360 } 363 }
361 TRACE_EVENT0("shutdown", "StartShutdownTracing"); 364 TRACE_EVENT0("shutdown", "StartShutdownTracing");
362 } 365 }
363 366
364 } // namespace browser_shutdown 367 } // namespace browser_shutdown
OLDNEW
« no previous file with comments | « chrome/browser/browser_shutdown.h ('k') | chrome/browser/browsing_data/autofill_counter_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698