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

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

Issue 1848103005: [Extensions] Remove the "use_movable_types" entry from idl/json files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 5
6 // Use the <code>chrome.mediaGalleries</code> API to access media files (audio, 6 // Use the <code>chrome.mediaGalleries</code> API to access media files (audio,
7 // images, video) from the user's local disks (with the user's consent). 7 // images, video) from the user's local disks (with the user's consent).
8 [use_movable_types=true] namespace mediaGalleries { 8 namespace mediaGalleries {
9 9
10 [inline_doc] enum GalleryChangeType { 10 [inline_doc] enum GalleryChangeType {
11 // The contents of the gallery have changed. 11 // The contents of the gallery have changed.
12 contents_changed, 12 contents_changed,
13 // The watch has been dropped because the device has been detached, 13 // The watch has been dropped because the device has been detached,
14 // the gallery permission has been removed, or any other reason. 14 // the gallery permission has been removed, or any other reason.
15 watch_dropped 15 watch_dropped
16 }; 16 };
17 17
18 [inline_doc] enum GetMediaFileSystemsInteractivity { 18 [inline_doc] enum GetMediaFileSystemsInteractivity {
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 interface Events { 246 interface Events {
247 // Fired when a media gallery is changed or a gallery watch is dropped. 247 // Fired when a media gallery is changed or a gallery watch is dropped.
248 static void onGalleryChanged(GalleryChangeDetails details); 248 static void onGalleryChanged(GalleryChangeDetails details);
249 249
250 // The pending media scan has changed state. See details for more 250 // The pending media scan has changed state. See details for more
251 // information. 251 // information.
252 [nodefine, deprecated="The mediaGalleries API no longer supports scanning."] 252 [nodefine, deprecated="The mediaGalleries API no longer supports scanning."]
253 static void onScanProgress(ScanProgressDetails details); 253 static void onScanProgress(ScanProgressDetails details);
254 }; 254 };
255 }; 255 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698