| Index: mojo/services/log/interfaces/log.mojom
|
| diff --git a/mojo/services/log/interfaces/log.mojom b/mojo/services/log/interfaces/log.mojom
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8e6a42d6a0e48e2836f85200002cbbadfd6b8fa4
|
| --- /dev/null
|
| +++ b/mojo/services/log/interfaces/log.mojom
|
| @@ -0,0 +1,13 @@
|
| +// Copyright 2015 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.
|
| +
|
| +module mojo.log;
|
| +
|
| +import "log/interfaces/entry.mojom";
|
| +
|
| +// An interface for logging. e.g., to the system log service.
|
| +[ServiceName="mojo::log::Log"]
|
| +interface Log {
|
| + AddEntry(Entry entry);
|
| +};
|
|
|