blob: b3eb8eee60ddeb289e39200afac78738c3f51c74 (
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
|
// Copyright 2016 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 HEADLESS_PUBLIC_INTERNAL_MESSAGE_DISPATCHER_H_
#define HEADLESS_PUBLIC_INTERNAL_MESSAGE_DISPATCHER_H_
#include <memory>
#include "base/callback_forward.h"
namespace base {
class Value;
}
namespace headless {
namespace internal {
// An internal interface for sending DevTools messages from the domain agents.
class MessageDispatcher {
public:
virtual void SendMessage(
const char* method,
std::unique_ptr<base::Value> params,
base::OnceCallback<void(const base::Value&)> callback) = 0;
virtual void SendMessage(const char* method,
std::unique_ptr<base::Value> params,
base::OnceClosure callback) = 0;
virtual void RegisterEventHandler(
const char* method,
base::RepeatingCallback<void(const base::Value&)> callback) = 0;
protected:
virtual ~MessageDispatcher() {}
};
} // namespace internal
} // namespace headless
#endif // HEADLESS_PUBLIC_INTERNAL_MESSAGE_DISPATCHER_H_
|