blob: 0e0731733178794b6cc12d6ac3410d3003f4970f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_PROFILE_STARTUP_H_
#define CHROME_BROWSER_CHROMEOS_PROFILE_STARTUP_H_
#pragma once
class Profile;
namespace chromeos {
// Initialize a bunch of services that are tied to a browser profile.
// TODO(beng): It is very fishy that any of these services need to be tied to
// a browser profile. This dependency should be severed and this
// init moved earlier in startup.
void ProfileStartup(Profile* profile, bool process_startup);
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_PROFILE_STARTUP_H_
|