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

Unified Diff: extensions/common/api/cast_channel.idl

Issue 2688463003: [chrome.cast.channel] Remove event logging. (Closed)
Patch Set: Remove errors object when socket is closed Created 3 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: extensions/common/api/cast_channel.idl
diff --git a/extensions/common/api/cast_channel.idl b/extensions/common/api/cast_channel.idl
index 0d695b68aa7a167a92beeb79cfab13e5b9fa963f..6fd3035b5230c7801fc2e83524ca13b75c539bc0 100644
--- a/extensions/common/api/cast_channel.idl
+++ b/extensions/common/api/cast_channel.idl
@@ -168,16 +168,6 @@ namespace cast.channel {
// Callback holding the result of a channel operation.
callback ChannelInfoCallback = void (ChannelInfo result);
- // Callback from <code>getLogs</code> method.
- // |log|: compressed serialized raw bytes containing the logs.
- // The log is formatted using protocol buffer.
- // See extensions/browser/api/cast_channel/logging.proto for definition.
- // Compression is in gzip format.
- callback GetLogsCallback = void (ArrayBuffer log);
-
- // Callback from <code>setAuthorityKeys</code> method.
Kevin M 2017/02/09 19:28:54 Document the removal of this function in CL desc
mark a. foltz 2017/02/10 21:55:16 Done.
- callback SetAuthorityKeysCallback = void ();
-
interface Functions {
// Opens a new channel to the Cast receiver specified by connectInfo. Only
// one channel may be connected to same receiver from the same extension at
@@ -205,19 +195,6 @@ namespace cast.channel {
// and channel.errorState will be set to the error condition.
static void close(ChannelInfo channel,
ChannelInfoCallback callback);
-
- // Get logs in compressed serialized format. See GetLogsCallback for
- // details.
- // |callback|: If successful, |callback| is invoked with data. Otherwise,
- // an error will be raised.
- static void getLogs(GetLogsCallback callback);
-
- // Sets trusted certificate authorities where |signature| is a base64
- // encoded RSA-PSS signature and |keys| is base64 encoded AuthorityKeys
- // protobuf.
- static void setAuthorityKeys(DOMString keys,
- DOMString signature,
- SetAuthorityKeysCallback callback);
};
// Events on the channel.

Powered by Google App Engine
This is Rietveld 408576698