Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1282)

Unified Diff: components/metrics/leak_detector/leak_detector_remote.mojom

Issue 2018983004: Mojo interface for Leak Detector on remote process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix conditional mojom source module declaration Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/metrics/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/leak_detector/leak_detector_remote.mojom
diff --git a/components/safe_json/public/interfaces/safe_json.mojom b/components/metrics/leak_detector/leak_detector_remote.mojom
similarity index 54%
copy from components/safe_json/public/interfaces/safe_json.mojom
copy to components/metrics/leak_detector/leak_detector_remote.mojom
index 599e6c45f29dd36a131c08c1be217f38f9d87d90..821f40786f883509e366325d39138b885b768251 100644
--- a/components/safe_json/public/interfaces/safe_json.mojom
+++ b/components/metrics/leak_detector/leak_detector_remote.mojom
@@ -2,11 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module safe_json.mojom;
+module metrics;
-[Native]
-struct ListValue;
+interface LeakDetectorRemote {
+ GetParams() => (string serialized_params);
-interface SafeJsonParser {
- Parse(string json) => (ListValue result, string? error);
+ SendLeakReports(array<string> serialized_reports);
};
« no previous file with comments | « components/metrics/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698