Index: chrome/common/extensions/docs/server2/test_data/test_idl/inline.idl |
diff --git a/chrome/common/extensions/docs/server2/test_data/test_idl/inline.idl b/chrome/common/extensions/docs/server2/test_data/test_idl/inline.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..76d9c4ef63fe2974961b4a5372a742d2860c7088 |
--- /dev/null |
+++ b/chrome/common/extensions/docs/server2/test_data/test_idl/inline.idl |
@@ -0,0 +1,30 @@ |
+// Copyright (c) 2013 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. |
+ |
+[permissions=power] |
+namespace power { |
+ [inline_doc] enum Level { |
+ system, |
+ |
+ display |
+ }; |
+ |
+ [inline_doc] dictionary DownloadQuery { |
+ DOMString? query; |
+ |
+ DOMString? startedBefore; |
+ |
+ DOMString? startedAfter; |
+ |
+ Level thing; |
+ }; |
+ |
+ interface Functions { |
+ static void requestKeepAwake(Level level); |
+ |
+ static void releaseKeepAwake(); |
+ |
+ static void doStuff(DownloadQuery query); |
+ }; |
+}; |