| Index: mojo/public/bindings/generated/sample_service_proxy.h
|
| diff --git a/mojo/public/bindings/generated/sample_service_proxy.h b/mojo/public/bindings/generated/sample_service_proxy.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a60eccf937493c05344b9d6359aa10a4c6c1cf96
|
| --- /dev/null
|
| +++ b/mojo/public/bindings/generated/sample_service_proxy.h
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 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 MOJO_GENERATED_BINDINGS_SAMPLE_SERVICE_PROXY_H_
|
| +#define MOJO_GENERATED_BINDINGS_SAMPLE_SERVICE_PROXY_H_
|
| +
|
| +#include "mojo/public/bindings/generated/sample_service.h"
|
| +
|
| +namespace sample {
|
| +
|
| +class ServiceProxy : public Service {
|
| + public:
|
| + explicit ServiceProxy(mojo::MessageSender* sender);
|
| +
|
| + void Frobinate(const Foo* Foo, bool baz, mojo::Handle port);
|
| +
|
| + private:
|
| + mojo::MessageSender* sender_;
|
| +};
|
| +
|
| +} // namespace test
|
| +
|
| +#endif // MOJO_GENERATED_BINDINGS_SAMPLE_SERVICE_PROXY_H_
|
|
|