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

Unified Diff: third_party/WebKit/Source/devtools/services/terminal.js

Issue 2370573002: DevTools: enable front-end to use external services for additional capabilities. (Closed)
Patch Set: review addressed Created 4 years, 3 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 | « third_party/WebKit/Source/devtools/services/package.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/services/terminal.js
diff --git a/third_party/WebKit/Source/devtools/services/terminal.js b/third_party/WebKit/Source/devtools/services/terminal.js
new file mode 100644
index 0000000000000000000000000000000000000000..742b553f890d4cacede997ce4760fb4d2603c3cc
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/services/terminal.js
@@ -0,0 +1,52 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+var pty = require("pty.js");
+
+function Terminal(notify)
+{
+ this._notify = notify;
+}
+
+Terminal.prototype = {
+ init: function(params)
+ {
+ this._term = pty.spawn(process.platform === "win32" ? "cmd.exe" : "bash", [], {
+ name: "xterm-color",
+ cols: params.cols || 80,
+ rows: params.rows || 24,
+ cwd: process.env.PWD,
+ env: process.env
+ });
+
+ this._term.on("data", data => {
+ if (this._notify)
+ this._notify("data", { data: data });
+ });
+ return Promise.resolve({});
+ },
+
+ resize: function(params)
+ {
+ if (this._term)
+ this._term.resize(params.cols, params.rows);
+ return Promise.resolve({});
+ },
+
+ write: function(params)
+ {
+ this._term.write(params.data);
+ return Promise.resolve({});
+ },
+
+ dispose: function(params)
+ {
+ this._notify = null;
+ if (this._term)
+ process.kill(this._term.pid);
+ return Promise.resolve({});
+ },
+}
+
+exports.Terminal = Terminal;
« no previous file with comments | « third_party/WebKit/Source/devtools/services/package.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698