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

Unified Diff: chrome/test/data/extensions/api_test/cast_channel/api/common.js

Issue 2559283003: remove CHANNEL_AUTH_TYPE_SSL from ChannelAuthType (Closed)
Patch Set: Fixing browser api tests + rebase Created 4 years 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 | chrome/test/data/extensions/api_test/cast_channel/api/test_get_logs.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/cast_channel/api/common.js
diff --git a/chrome/test/data/extensions/api_test/cast_channel/api/common.js b/chrome/test/data/extensions/api_test/cast_channel/api/common.js
index eabcc5cd753973d3285072383d5081f93884e1a9..2eda0868a2632b5a76a657ef9d1ea6dd761187bf 100644
--- a/chrome/test/data/extensions/api_test/cast_channel/api/common.js
+++ b/chrome/test/data/extensions/api_test/cast_channel/api/common.js
@@ -8,7 +8,7 @@ assertOpenChannel = function(channel) {
chrome.test.assertTrue(channel.channelId > 0);
chrome.test.assertTrue(channel.connectInfo.ipAddress == '192.168.1.1');
chrome.test.assertTrue(channel.connectInfo.port == 8009);
- chrome.test.assertTrue(channel.connectInfo.auth == 'ssl');
+ chrome.test.assertTrue(channel.connectInfo.auth == 'ssl_verified');
chrome.test.assertTrue(channel.readyState == 'open');
chrome.test.assertTrue(channel.errorState == undefined);
};
@@ -23,7 +23,7 @@ assertClosedChannelWithError = function(channel, error) {
chrome.test.assertTrue(channel.channelId > 0);
chrome.test.assertTrue(channel.connectInfo.ipAddress == '192.168.1.1');
chrome.test.assertTrue(channel.connectInfo.port == 8009);
- chrome.test.assertTrue(channel.connectInfo.auth == 'ssl');
+ chrome.test.assertTrue(channel.connectInfo.auth == 'ssl_verified');
chrome.test.assertTrue(channel.readyState == 'closed');
chrome.test.assertTrue(channel.errorState == error);
};
« no previous file with comments | « no previous file | chrome/test/data/extensions/api_test/cast_channel/api/test_get_logs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698