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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 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.
4
5 [permissions=power]
6 namespace power {
7 [inline_doc] enum Level {
8 system,
9
10 display
11 };
12
13 [inline_doc] dictionary DownloadQuery {
14 DOMString? query;
15
16 DOMString? startedBefore;
17
18 DOMString? startedAfter;
19
20 Level thing;
21 };
22
23 interface Functions {
24 static void requestKeepAwake(Level level);
25
26 static void releaseKeepAwake();
27
28 static void doStuff(DownloadQuery query);
29 };
30 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698