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

Side by Side Diff: chrome/common/extensions/api/image_writer_private.idl

Issue 754693004: Cleanup: remove the namespace-level nodoc annotations from Extension API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Use the <code>chrome.image_writer</code> API to write images to 5 // Use the <code>chrome.image_writer</code> API to write images to
6 // removable media. 6 // removable media.
7 // 7 //
8 // See the design doc for a detailed description of this API. 8 // See the design doc for a detailed description of this API.
9 // https://goto.google.com/image-writer-private-designdoc 9 // https://goto.google.com/image-writer-private-designdoc
10 [nodoc] namespace imageWriterPrivate { 10 namespace imageWriterPrivate {
11 // The different stages of a write call. 11 // The different stages of a write call.
12 // 12 //
13 // <dl> 13 // <dl>
14 // <dt>confirmation</dt> 14 // <dt>confirmation</dt>
15 // <dd>The process starts by prompting the user for confirmation.</dd> 15 // <dd>The process starts by prompting the user for confirmation.</dd>
16 // <dt>download</dt> 16 // <dt>download</dt>
17 // <dd>The image file is being download if a remote image was 17 // <dd>The image file is being download if a remote image was
18 // requested.</dd> 18 // requested.</dd>
19 // <dt>verifyDownload</dt> 19 // <dt>verifyDownload</dt>
20 // <dd>The download is being verified to match the image hash, if 20 // <dd>The download is being verified to match the image hash, if
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 134
135 // Fires when a removable storage device is inserted. 135 // Fires when a removable storage device is inserted.
136 static void onDeviceInserted(RemovableStorageDevice device); 136 static void onDeviceInserted(RemovableStorageDevice device);
137 137
138 // Fires when a removable storage device is removed. 138 // Fires when a removable storage device is removed.
139 static void onDeviceRemoved(RemovableStorageDevice device); 139 static void onDeviceRemoved(RemovableStorageDevice device);
140 }; 140 };
141 141
142 }; 142 };
143 143
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/hotword_private.idl ('k') | chrome/common/extensions/api/music_manager_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698