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

Side by Side Diff: extensions/common/api/display_source.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 // The <code>chrome.displaySource</code> API creates a Display 5 // The <code>chrome.displaySource</code> API creates a Display
6 // session using WebMediaStreamTrack as sources. 6 // session using WebMediaStreamTrack as sources.
7 [use_movable_types=true] namespace displaySource { 7 namespace displaySource {
8 enum ErrorType { 8 enum ErrorType {
9 // The connection with sink cannot be established or has dropped 9 // The connection with sink cannot be established or has dropped
10 // unexpectedly. 10 // unexpectedly.
11 connection_error, 11 connection_error,
12 12
13 // The capabilities of this Display Source and the connected 13 // The capabilities of this Display Source and the connected
14 // sink do not fit (e.g. the sink cannot play the media content of 14 // sink do not fit (e.g. the sink cannot play the media content of
15 // the formats given by the source). 15 // the formats given by the source).
16 capabilities_negotiation_error, 16 capabilities_negotiation_error,
17 17
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 // Event fired when the Display session is terminated. 134 // Event fired when the Display session is terminated.
135 // |sinkId| Id of the peer sink 135 // |sinkId| Id of the peer sink
136 [nocompile] static void onSessionTerminated(long sinkId); 136 [nocompile] static void onSessionTerminated(long sinkId);
137 // Event fired when an error occurs. 137 // Event fired when an error occurs.
138 // |sinkId| Id of the peer sink 138 // |sinkId| Id of the peer sink
139 // |errorInfo| error description 139 // |errorInfo| error description
140 [nocompile] static void onSessionErrorOccured(long sinkId, 140 [nocompile] static void onSessionErrorOccured(long sinkId,
141 ErrorInfo errorInfo); 141 ErrorInfo errorInfo);
142 }; 142 };
143 }; 143 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698