Chromium Code Reviews| Index: net/test/python_utils.h |
| diff --git a/net/test/python_utils.h b/net/test/python_utils.h |
| index 583fb2741a7353a4363933138639a74721fb5726..f1fcb4203ddee18feea7d918e98ddbe0c34f58d4 100644 |
| --- a/net/test/python_utils.h |
| +++ b/net/test/python_utils.h |
| @@ -7,6 +7,7 @@ |
| #include "base/compiler_specific.h" |
| +class CommandLine; |
| class FilePath; |
| // This is the python path variable name. |
| @@ -18,7 +19,7 @@ void AppendToPythonPath(const FilePath& dir); |
| // Return the location of the compiler-generated python protobuf. |
| bool GetPyProtoPath(FilePath* dir); |
| -// Returns the path that should be used to launch Python. |
| -bool GetPythonRunTime(FilePath* path) WARN_UNUSED_RESULT; |
| +// Returns the command that should be used to launch Python. |
| +bool GetPythonRunTime(CommandLine* python_cmd) WARN_UNUSED_RESULT; |
|
Paweł Hajdan Jr.
2012/09/12 10:37:25
nit: Please also rename the function, GetPythonRun
Raghu Simha
2012/09/12 18:31:20
Done.
|
| #endif // NET_TEST_PYTHON_UTILS_H_ |