Roll src/third_party/WebKit 6f84130:7353389 (svn 184386:184391)
[chromium-blink-merge.git] / tools / json_schema_compiler / test / idl_reserved_words.idl
blob411973e611dff73522aa382b419d5e6c2263ef59
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // Tests 'reserved words' in various places in IDL.
7 namespace reserved_words {
9 enum Foo { _float, _DOMString };
11 enum _enum {
12 _callback,
13 _namespace
16 dictionary _dictionary {
17 long _long;
20 dictionary MyType {
21 DOMString _interface;
24 interface Functions {
25 static void _static(Foo foo, _enum e);