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

Unified Diff: mojo/dart/packages/mojo_services/lib/tracing/tracing.mojom.dart

Issue 1539673003: Generate Mojom Types in Dart (Take 2) (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Merge with master Created 4 years, 11 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
Index: mojo/dart/packages/mojo_services/lib/tracing/tracing.mojom.dart
diff --git a/mojo/dart/packages/mojo_services/lib/tracing/tracing.mojom.dart b/mojo/dart/packages/mojo_services/lib/tracing/tracing.mojom.dart
index a7c2f5e1e8b2ee308b583ba2fcafc6f2edc896fa..8f9f5dc530545e43824b3bba66f32907bb09b504 100644
--- a/mojo/dart/packages/mojo_services/lib/tracing/tracing.mojom.dart
+++ b/mojo/dart/packages/mojo_services/lib/tracing/tracing.mojom.dart
@@ -8,6 +8,8 @@ import 'dart:async';
import 'package:mojo/bindings.dart' as bindings;
import 'package:mojo/core.dart' as core;
+import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
+import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as service_describer;
@@ -85,6 +87,8 @@ class _TraceProviderStartTracingParams extends bindings.Struct {
}
+
+
class _TraceProviderStopTracingParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(8, 0)
@@ -143,6 +147,8 @@ class _TraceProviderStopTracingParams extends bindings.Struct {
}
+
+
class _TraceRecorderRecordParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(16, 0)
@@ -210,6 +216,8 @@ class _TraceRecorderRecordParams extends bindings.Struct {
}
+
+
class _TraceCollectorStartParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(24, 0)
@@ -284,6 +292,8 @@ class _TraceCollectorStartParams extends bindings.Struct {
}
+
+
class _TraceCollectorStopAndFlushParams extends bindings.Struct {
static const List<bindings.StructDataHeader> kVersions = const [
const bindings.StructDataHeader(8, 0)
@@ -341,9 +351,22 @@ class _TraceCollectorStopAndFlushParams extends bindings.Struct {
}
}
+
+
+
const int _TraceProvider_startTracingName = 0;
const int _TraceProvider_stopTracingName = 1;
+
+
+class _TraceProviderServiceDescription implements service_describer.ServiceDescription {
+ dynamic getTopLevelInterface([Function responseFactory]) => null;
+
+ dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => null;
+
+ dynamic getAllTypeDefinitions([Function responseFactory]) => null;
+}
+
abstract class TraceProvider {
static const String serviceName = "tracing::TraceProvider";
void startTracing(String categories, Object recorder);
@@ -366,6 +389,9 @@ class _TraceProviderProxyImpl extends bindings.Proxy {
return new _TraceProviderProxyImpl.fromEndpoint(endpoint);
}
+ service_describer.ServiceDescription get serviceDescription =>
+ new _TraceProviderServiceDescription();
+
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
default:
@@ -523,10 +549,23 @@ class TraceProviderStub extends bindings.Stub {
}
int get version => 0;
+
+ service_describer.ServiceDescription get serviceDescription =>
+ new _TraceProviderServiceDescription();
}
const int _TraceRecorder_recordName = 0;
+
+
+class _TraceRecorderServiceDescription implements service_describer.ServiceDescription {
+ dynamic getTopLevelInterface([Function responseFactory]) => null;
+
+ dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => null;
+
+ dynamic getAllTypeDefinitions([Function responseFactory]) => null;
+}
+
abstract class TraceRecorder {
static const String serviceName = null;
void record(String json);
@@ -548,6 +587,9 @@ class _TraceRecorderProxyImpl extends bindings.Proxy {
return new _TraceRecorderProxyImpl.fromEndpoint(endpoint);
}
+ service_describer.ServiceDescription get serviceDescription =>
+ new _TraceRecorderServiceDescription();
+
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
default:
@@ -691,11 +733,24 @@ class TraceRecorderStub extends bindings.Stub {
}
int get version => 0;
+
+ service_describer.ServiceDescription get serviceDescription =>
+ new _TraceRecorderServiceDescription();
}
const int _TraceCollector_startName = 0;
const int _TraceCollector_stopAndFlushName = 1;
+
+
+class _TraceCollectorServiceDescription implements service_describer.ServiceDescription {
+ dynamic getTopLevelInterface([Function responseFactory]) => null;
+
+ dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => null;
+
+ dynamic getAllTypeDefinitions([Function responseFactory]) => null;
+}
+
abstract class TraceCollector {
static const String serviceName = "tracing::TraceCollector";
void start(core.MojoDataPipeProducer stream, String categories);
@@ -718,6 +773,9 @@ class _TraceCollectorProxyImpl extends bindings.Proxy {
return new _TraceCollectorProxyImpl.fromEndpoint(endpoint);
}
+ service_describer.ServiceDescription get serviceDescription =>
+ new _TraceCollectorServiceDescription();
+
void handleResponse(bindings.ServiceMessage message) {
switch (message.header.type) {
default:
@@ -875,6 +933,10 @@ class TraceCollectorStub extends bindings.Stub {
}
int get version => 0;
+
+ service_describer.ServiceDescription get serviceDescription =>
+ new _TraceCollectorServiceDescription();
}
+

Powered by Google App Engine
This is Rietveld 408576698