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

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

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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 | « chrome/browser/background/background_mode_manager.cc ('k') | chrome/browser/browser_util_win.h » ('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 "chrome/browser/browser_shutdown.h" 5 #include "chrome/browser/browser_shutdown.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 21 matching lines...) Expand all
32 #include "chrome/common/switch_utils.h" 32 #include "chrome/common/switch_utils.h"
33 #include "components/metrics/metrics_service.h" 33 #include "components/metrics/metrics_service.h"
34 #include "components/prefs/pref_registry_simple.h" 34 #include "components/prefs/pref_registry_simple.h"
35 #include "components/prefs/pref_service.h" 35 #include "components/prefs/pref_service.h"
36 #include "components/tracing/common/tracing_switches.h" 36 #include "components/tracing/common/tracing_switches.h"
37 #include "content/public/browser/browser_thread.h" 37 #include "content/public/browser/browser_thread.h"
38 #include "content/public/browser/render_process_host.h" 38 #include "content/public/browser/render_process_host.h"
39 #include "content/public/browser/tracing_controller.h" 39 #include "content/public/browser/tracing_controller.h"
40 40
41 #if defined(OS_WIN) 41 #if defined(OS_WIN)
42 #include "chrome/browser/browser_util_win.h"
43 #include "chrome/browser/first_run/upgrade_util_win.h" 42 #include "chrome/browser/first_run/upgrade_util_win.h"
43 #include "chrome/browser/win/browser_util.h"
44 #endif 44 #endif
45 45
46 #if !defined(OS_ANDROID) && !defined(OS_CHROMEOS) 46 #if !defined(OS_ANDROID) && !defined(OS_CHROMEOS)
47 #include "chrome/browser/first_run/upgrade_util.h" 47 #include "chrome/browser/first_run/upgrade_util.h"
48 #endif 48 #endif
49 49
50 #if defined(ENABLE_RLZ) 50 #if defined(ENABLE_RLZ)
51 #include "components/rlz/rlz_tracker.h" 51 #include "components/rlz/rlz_tracker.h"
52 #endif 52 #endif
53 53
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 base::trace_event::TraceConfig trace_config( 342 base::trace_event::TraceConfig trace_config(
343 command_line.GetSwitchValueASCII(switches::kTraceShutdown), ""); 343 command_line.GetSwitchValueASCII(switches::kTraceShutdown), "");
344 content::TracingController::GetInstance()->StartTracing( 344 content::TracingController::GetInstance()->StartTracing(
345 trace_config, 345 trace_config,
346 content::TracingController::StartTracingDoneCallback()); 346 content::TracingController::StartTracingDoneCallback());
347 } 347 }
348 TRACE_EVENT0("shutdown", "StartShutdownTracing"); 348 TRACE_EVENT0("shutdown", "StartShutdownTracing");
349 } 349 }
350 350
351 } // namespace browser_shutdown 351 } // namespace browser_shutdown
OLDNEW
« no previous file with comments | « chrome/browser/background/background_mode_manager.cc ('k') | chrome/browser/browser_util_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698