blob: 5976302986e3d2ff0f4b1b250f6774d84ead5839 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// Copyright (c) 2013 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_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_
#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/non_thread_safe.h"
class CommandLine;
namespace chromeos {
class OomPriorityManager;
class ProfileHelper;
}
class BrowserProcessPlatformPart : public base::NonThreadSafe {
public:
BrowserProcessPlatformPart();
virtual ~BrowserProcessPlatformPart();
// Called after creating the process singleton or when another chrome
// rendez-vous with this one.
virtual void PlatformSpecificCommandLineProcessing(
const CommandLine& command_line);
// Called from BrowserProcessImpl::StartTearDown().
virtual void StartTearDown();
// Returns the out-of-memory priority manager.
virtual chromeos::OomPriorityManager* oom_priority_manager();
// Returns the ProfileHelper instance that is used to identify
// users and their profiles in Chrome OS multi user session.
virtual chromeos::ProfileHelper* profile_helper();
protected:
virtual void CreateProfileHelper();
bool created_profile_helper_;
scoped_ptr<chromeos::ProfileHelper> profile_helper_;
private:
scoped_ptr<chromeos::OomPriorityManager> oom_priority_manager_;
DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
};
#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_CHROMEOS_H_
|