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

Unified Diff: chrome/common/extensions/docs/server2/test_data/test_idl/inline.idl

Issue 14322003: Inline docs render properly in extensions doc server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment and whitespace fixes Created 7 years, 8 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: 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);
+ };
+};

Powered by Google App Engine
This is Rietveld 408576698