blob: 7972fa8ec5594b2deba42d130510d74e450db0ff [file] [log] [blame]
[email protected]c4f883a2012-02-03 17:02:071// 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
3// found in the LICENSE file.
4
Jay Civelli14aced2a2018-03-14 23:44:335#ifndef CONTENT_BROWSER_UTILITY_PROCESS_HOST_CLIENT_H_
6#define CONTENT_BROWSER_UTILITY_PROCESS_HOST_CLIENT_H_
[email protected]c4f883a2012-02-03 17:02:077
8#include "base/memory/ref_counted.h"
9#include "content/common/content_export.h"
10
11namespace IPC {
12class Message;
13}
14
15namespace content {
16
17// An interface to be implemented by consumers of the utility process to
18// get results back. All functions are called on the thread passed along
19// to UtilityProcessHost.
20class UtilityProcessHostClient
21 : public base::RefCountedThreadSafe<UtilityProcessHostClient> {
22 public:
23 // Called when the process has crashed.
24 virtual void OnProcessCrashed(int exit_code) {}
25
wfh3adf87d2016-05-03 23:26:0626 // Called when the process fails to launch. |error_code| is one of
27 // LaunchResultCode or sandbox::ResultCode containing the error.
28 virtual void OnProcessLaunchFailed(int error_code) {}
[email protected]fa01e472014-02-11 14:45:3529
[email protected]c4f883a2012-02-03 17:02:0730 // Allow the client to filter IPC messages.
31 virtual bool OnMessageReceived(const IPC::Message& message) = 0;
32
33 protected:
34 friend class base::RefCountedThreadSafe<UtilityProcessHostClient>;
35
36 virtual ~UtilityProcessHostClient() {}
37};
38
39}; // namespace content
40
Jay Civelli14aced2a2018-03-14 23:44:3341#endif // CONTENT_BROWSER_UTILITY_PROCESS_HOST_CLIENT_H_