blob: 0636004ba5fd8b78c9c727d0a36628f1868c2987 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright 2014 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 MOJO_SPY_SPY_H_
#define MOJO_SPY_SPY_H_
#include <string>
namespace mojo {
class ServiceManager;
class Spy {
public:
Spy(mojo::ServiceManager* service_manager, const std::string& options);
~Spy();
};
} // namespace mojo
#endif // MOJO_SPY_SPY_H_
|