Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module content.mojom; | |
| 6 | |
| 7 import "mojo/common/values.mojom"; | |
| 8 import "url/mojo/url.mojom"; | |
| 9 | |
| 10 interface ReportingServiceProxy { | |
| 11 QueueReport(url.mojom.Url url, | |
|
dcheng
2017/05/19 13:42:55
Nit: please add some comments to this interface an
Julia Tuttle
2017/05/19 16:12:22
Done.
| |
| 12 string group, | |
| 13 string type, | |
| 14 mojo.common.mojom.Value body); | |
| 15 }; | |
| OLD | NEW |