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

Side by Side Diff: remoting/webapp/browser_test/mock_client_plugin.js

Issue 825793002: Remove MediaStream renderer from the webapp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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
« no previous file with comments | « remoting/webapp/base/js/application.js ('k') | remoting/webapp/crd/js/client_plugin.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * Mock implementation of ClientPlugin for testing. 7 * Mock implementation of ClientPlugin for testing.
8 * @suppress {checkTypes} 8 * @suppress {checkTypes}
9 */ 9 */
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 remoting.MockClientPlugin.prototype.onIncomingIq = function(iq) {}; 90 remoting.MockClientPlugin.prototype.onIncomingIq = function(iq) {};
91 91
92 remoting.MockClientPlugin.prototype.isSupportedVersion = function() { 92 remoting.MockClientPlugin.prototype.isSupportedVersion = function() {
93 return true; 93 return true;
94 }; 94 };
95 95
96 remoting.MockClientPlugin.prototype.hasFeature = function(feature) { 96 remoting.MockClientPlugin.prototype.hasFeature = function(feature) {
97 return false; 97 return false;
98 }; 98 };
99 99
100 remoting.MockClientPlugin.prototype.enableMediaSourceRendering =
101 function(mediaSourceRenderer) {};
102
103 remoting.MockClientPlugin.prototype.sendClipboardItem = 100 remoting.MockClientPlugin.prototype.sendClipboardItem =
104 function(mimeType, item) {}; 101 function(mimeType, item) {};
105 102
106 remoting.MockClientPlugin.prototype.useAsyncPinDialog = function() {}; 103 remoting.MockClientPlugin.prototype.useAsyncPinDialog = function() {};
107 104
108 remoting.MockClientPlugin.prototype.requestPairing = 105 remoting.MockClientPlugin.prototype.requestPairing =
109 function(clientName, onDone) {}; 106 function(clientName, onDone) {};
110 107
111 remoting.MockClientPlugin.prototype.onPinFetched = function(pin) {}; 108 remoting.MockClientPlugin.prototype.onPinFetched = function(pin) {};
112 109
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 * @extends {remoting.ClientPluginFactory} 175 * @extends {remoting.ClientPluginFactory}
179 */ 176 */
180 remoting.MockClientPluginFactory = function() {}; 177 remoting.MockClientPluginFactory = function() {};
181 178
182 remoting.MockClientPluginFactory.prototype.createPlugin = 179 remoting.MockClientPluginFactory.prototype.createPlugin =
183 function(container, onExtensionMessage) { 180 function(container, onExtensionMessage) {
184 return new remoting.MockClientPlugin(container); 181 return new remoting.MockClientPlugin(container);
185 }; 182 };
186 183
187 remoting.MockClientPluginFactory.prototype.preloadPlugin = function() {}; 184 remoting.MockClientPluginFactory.prototype.preloadPlugin = function() {};
OLDNEW
« no previous file with comments | « remoting/webapp/base/js/application.js ('k') | remoting/webapp/crd/js/client_plugin.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698