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

Unified Diff: services/dart/lib/application.dart

Issue 816113004: Dart: Adds a content handler and a test. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: comment Created 5 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: services/dart/lib/application.dart
diff --git a/services/dart/lib/application.dart b/services/dart/lib/application.dart
new file mode 100644
index 0000000000000000000000000000000000000000..75243ddaed51c2845fd74454eb292b3949d2d4a7
--- /dev/null
+++ b/services/dart/lib/application.dart
@@ -0,0 +1,18 @@
+// Copyright 2014 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.
+
+library application;
+
+import 'dart:async';
+import 'dart:convert';
+import 'dart:mojo_bindings' as bindings;
+import 'dart:mojo_core' as core;
+import 'dart:typed_data';
+
+import 'package:mojo/public/interfaces/application/application.mojom.dart' as application;
+import 'package:mojo/public/interfaces/application/service_provider.mojom.dart' as service_provider;
+import 'package:mojo/public/interfaces/application/shell.mojom.dart' as shell;
+
+part 'src/application.dart';
+part 'src/service_provider.dart';

Powered by Google App Engine
This is Rietveld 408576698