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

Unified Diff: tools/json_schema_compiler/test/idl_object_types.idl

Issue 682493002: Remove the dependency on json schema compiler. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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: tools/json_schema_compiler/test/idl_object_types.idl
diff --git a/tools/json_schema_compiler/test/idl_object_types.idl b/tools/json_schema_compiler/test/idl_object_types.idl
deleted file mode 100644
index ebf9f38aa61b5801df2cd3c83dd0ce2f7c0c88ef..0000000000000000000000000000000000000000
--- a/tools/json_schema_compiler/test/idl_object_types.idl
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (c) 2012 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.
-
-// Tests 'object' types in various places in IDL.
-
-namespace idl_object_types {
- dictionary FooType {
- long x;
- object y;
- [instanceOf=Window]object z;
- };
-
- dictionary BarType {
- any x;
- };
-
- dictionary BazType {
- long? x;
- FooType? foo;
- };
-
- dictionary UnionType {
- (long or FooType)? x;
- (DOMString or object) y;
- ([instanceOf=ImageData]object or long) z;
- };
-
- dictionary ModifiedUnionType {
- [nodoc] (long or DOMString) x;
- };
-
- interface Functions {
- static void objectFunction1([instanceOf=ImageData]object icon);
- static void objectFunction2(any some_arg);
- };
-};

Powered by Google App Engine
This is Rietveld 408576698