// 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); | |
}; |