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

Unified Diff: extensions/renderer/resources/media_router_bindings.js

Issue 2805553002: [Media Router] Export TimeDelta in media_router_bindings.js (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/resources/media_router_bindings.js
diff --git a/extensions/renderer/resources/media_router_bindings.js b/extensions/renderer/resources/media_router_bindings.js
index 3c3e2fa37b6ed8ebc37626a497651ee0d8ac8880..ca8d818e5d1e6a36cf8bee7e48612aba25f4bc0e 100644
--- a/extensions/renderer/resources/media_router_bindings.js
+++ b/extensions/renderer/resources/media_router_bindings.js
@@ -287,6 +287,7 @@ define('media_router_bindings', [
MediaStatusObserverPtr: mediaStatusMojom.MediaStatusObserverPtr,
Sink: mediaRouterMojom.MediaSink,
SinkExtraData: mediaRouterMojom.MediaSinkExtraData,
+ TimeDelta: timeMojom.TimeDelta,
Url: urlMojom.Url,
};
};
@@ -661,8 +662,8 @@ define('media_router_bindings', [
* requesting presentation. TODO(mfoltz): Remove.
* @param {!originMojom.Origin} origin Origin of site requesting presentation.
* @param {!number} tabId ID of tab requesting presentation.
- * @param {!TimeDelta} timeout If positive, the timeout duration for the
- * request. Otherwise, the default duration will be used.
+ * @param {!timeMojom.TimeDelta} timeout If positive, the timeout duration for
+ * the request. Otherwise, the default duration will be used.
* @param {!boolean} incognito If true, the route is being requested by
* an incognito profile.
* @return {!Promise.<!Object>} A Promise resolving to an object describing
@@ -692,8 +693,8 @@ define('media_router_bindings', [
* @param {!string} presentationId Presentation ID to join.
* @param {!originMojom.Origin} origin Origin of site requesting join.
* @param {!number} tabId ID of tab requesting join.
- * @param {!TimeDelta} timeout If positive, the timeout duration for the
- * request. Otherwise, the default duration will be used.
+ * @param {!timeMojom.TimeDelta} timeout If positive, the timeout duration for
+ * the request. Otherwise, the default duration will be used.
* @param {!boolean} incognito If true, the route is being requested by
* an incognito profile.
* @return {!Promise.<!Object>} A Promise resolving to an object describing
@@ -724,8 +725,8 @@ define('media_router_bindings', [
* @param {!string} presentationId Presentation ID to join.
* @param {!originMojom.Origin} origin Origin of site requesting join.
* @param {!number} tabId ID of tab requesting join.
- * @param {!TimeDelta} timeout If positive, the timeout duration for the
- * request. Otherwise, the default duration will be used.
+ * @param {!timeMojom.TimeDelta} timeout If positive, the timeout duration for
+ * the request. Otherwise, the default duration will be used.
* @param {!boolean} incognito If true, the route is being requested by
* an incognito profile.
* @return {!Promise.<!Object>} A Promise resolving to an object describing
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698