| 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);
|
| - };
|
| -};
|
|
|