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

Unified Diff: remoting/webapp/js_proto/chrome_proto.js

Issue 386853002: Add a Record button to the web-app if the host supports video recording. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: function -> var Created 6 years, 4 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 | « remoting/webapp/html/window_frame.html ('k') | remoting/webapp/manifest.json.jinja2 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/js_proto/chrome_proto.js
diff --git a/remoting/webapp/js_proto/chrome_proto.js b/remoting/webapp/js_proto/chrome_proto.js
index ba9d3bbc7ac5962e8950971f8a5ac11c2b29925c..c7d983fdeffd5aef844f117ddb84c2ad70edfcc0 100644
--- a/remoting/webapp/js_proto/chrome_proto.js
+++ b/remoting/webapp/js_proto/chrome_proto.js
@@ -241,6 +241,20 @@ OnClickData.prototype.checked;
/** @type {Object} */
+chrome.fileSystem = {
+ /**
+ * @param {Object.<string>?} options
+ * @param {function(Entry, Array.<FileEntry>):void} callback
+ */
+ chooseEntry: function(options, callback) {},
+ /**
+ * @param {FileEntry} fileEntry
+ * @param {function(string):void} callback
+ */
+ getDisplayPath: function(fileEntry, callback) {}
+};
+
+/** @type {Object} */
chrome.identity = {
/**
* @param {Object.<string>} parameters
@@ -507,4 +521,3 @@ chrome.cast.initialize =
*/
chrome.cast.requestSession =
function(successCallback, errorCallback) {};
-
« no previous file with comments | « remoting/webapp/html/window_frame.html ('k') | remoting/webapp/manifest.json.jinja2 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698