forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchrome_content_utility_client.h
58 lines (44 loc) · 1.74 KB
/
chrome_content_utility_client.h
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
52
53
54
55
56
57
58
// 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_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
#define CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_
#include <memory>
#include <vector>
#include "base/macros.h"
#include "build/build_config.h"
#include "content/public/utility/content_utility_client.h"
#include "printing/buildflags/buildflags.h"
class MashServiceFactory;
namespace printing {
class PrintingHandler;
}
class ChromeContentUtilityClient : public content::ContentUtilityClient {
public:
using NetworkBinderCreationCallback =
base::Callback<void(service_manager::BinderRegistry*)>;
ChromeContentUtilityClient();
~ChromeContentUtilityClient() override;
// content::ContentUtilityClient:
void UtilityThreadStarted() override;
bool OnMessageReceived(const IPC::Message& message) override;
void RegisterServices(StaticServiceMap* services) override;
void RegisterNetworkBinders(
service_manager::BinderRegistry* registry) override;
// See NetworkBinderProvider above.
static void SetNetworkBinderCreationCallback(
const NetworkBinderCreationCallback& callback);
private:
#if defined(OS_WIN) && BUILDFLAG(ENABLE_PRINT_PREVIEW)
// Last IPC message handler.
std::unique_ptr<printing::PrintingHandler> printing_handler_;
#endif
// True if the utility process runs with elevated privileges.
bool utility_process_running_elevated_;
#if defined(OS_CHROMEOS)
// Must be owned by utility main thread.
std::unique_ptr<MashServiceFactory> mash_service_factory_;
#endif
DISALLOW_COPY_AND_ASSIGN(ChromeContentUtilityClient);
};
#endif // CHROME_UTILITY_CHROME_CONTENT_UTILITY_CLIENT_H_