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

Unified Diff: mojo/devtools/common/devtoolslib/shell.py

Issue 1139053005: Add ServeLocalDirectory to the shell abstraction. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 7 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: mojo/devtools/common/devtoolslib/shell.py
diff --git a/mojo/devtools/common/devtoolslib/shell.py b/mojo/devtools/common/devtoolslib/shell.py
index ce1311a0f6e13659de24741aa502ad47407f7e01..ed3741a3108ea17550957dba5d86357f69c0c5f0 100644
--- a/mojo/devtools/common/devtoolslib/shell.py
+++ b/mojo/devtools/common/devtoolslib/shell.py
@@ -6,6 +6,19 @@
class Shell(object):
"""Represents an abstract Mojo shell."""
+ def ServeLocalDirectory(self, local_dir_path, port=0):
+ """Serves the content of the local (host) directory, making it available to
+ the shell under the url returned by the function.
+
+ The server will run on a separate thread until the program terminates. The
+ call returns immediately.
+
+ Args:
+ local_dir_path: path to the directory to be served
+ port: port at which the server will be available to the shell
+ """
+ raise NotImplementedError()
+
def Run(self, arguments):
"""Runs the shell with given arguments until shell exits, passing the stdout
mingled with stderr produced by the shell onto the stdout.

Powered by Google App Engine
This is Rietveld 408576698