| Index: tools/chrome_remote_control/chrome_remote_control/tab_runtime.py
|
| diff --git a/tools/chrome_remote_control/chrome_remote_control/tab_runtime.py b/tools/chrome_remote_control/chrome_remote_control/tab_runtime.py
|
| index eaedca22bb5284df3d87f2ec89228818395dd5a3..0283b3022707f77253bdb3ca6d5b5aa1ca90c8b2 100644
|
| --- a/tools/chrome_remote_control/chrome_remote_control/tab_runtime.py
|
| +++ b/tools/chrome_remote_control/chrome_remote_control/tab_runtime.py
|
| @@ -21,14 +21,14 @@ class TabRuntime(object):
|
| pass
|
|
|
| def Execute(self, expr, timeout=60):
|
| - """Executes expr
|
| + """Executes expr in javascript. Does not return the result.
|
|
|
| If the expression failed to evaluate, EvaluateException will be raised.
|
| """
|
| self.Evaluate(expr + "; 0;", timeout=60);
|
|
|
| def Evaluate(self, expr, timeout=60):
|
| - """Evalutes expr and returns the JSONized result.
|
| + """Evalutes expr in javascript and returns the JSONized result.
|
|
|
| Consider using Execute for cases where the result of the expression is not
|
| needed.
|
|
|