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

Unified Diff: third_party/WebKit/Source/modules/mediastream/RTCPeerConnectionErrorCallback.idl

Issue 1729563002: Replace RTCErrorCallback with RTCPeerConnectionErrorCallback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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
Index: third_party/WebKit/Source/modules/mediastream/RTCPeerConnectionErrorCallback.idl
diff --git a/mojo/services/package_manager/public/interfaces/catalog.mojom b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnectionErrorCallback.idl
similarity index 50%
copy from mojo/services/package_manager/public/interfaces/catalog.mojom
copy to third_party/WebKit/Source/modules/mediastream/RTCPeerConnectionErrorCallback.idl
index db16c04795e85cb74d788d80d785c843826cec34..c159a9fe7a7510229dec88f0d541e21283176676 100644
--- a/mojo/services/package_manager/public/interfaces/catalog.mojom
+++ b/third_party/WebKit/Source/modules/mediastream/RTCPeerConnectionErrorCallback.idl
@@ -2,12 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module package_manager.mojom;
+// https://w3c.github.io/webrtc-pc/#rtcpeerconnectionerrorcallback
-struct CatalogEntry {
- string name;
+callback interface RTCPeerConnectionErrorCallback {
+ void handleEvent(DOMException exception);
};
-interface Catalog {
- GetEntries(array<string> urls) => (map<string, CatalogEntry> entries);
-};

Powered by Google App Engine
This is Rietveld 408576698