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

Unified Diff: net/test/python_utils.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « net/http/infinite_cache.h ('k') | net/url_request/url_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/test/python_utils.h
diff --git a/net/test/python_utils.h b/net/test/python_utils.h
index c7cf289310703cd694858477daab240a3a72ad75..30776456503f7bec8d96ae48bd641f0fcd020ac3 100644
--- a/net/test/python_utils.h
+++ b/net/test/python_utils.h
@@ -8,16 +8,19 @@
#include "base/compiler_specific.h"
class CommandLine;
+
+namespace base {
class FilePath;
+}
// This is the python path variable name.
extern const char kPythonPathEnv[];
// Appends the dir to python path environment variable.
-void AppendToPythonPath(const FilePath& dir);
+void AppendToPythonPath(const base::FilePath& dir);
// Return the location of the compiler-generated python protobuf.
-bool GetPyProtoPath(FilePath* dir);
+bool GetPyProtoPath(base::FilePath* dir);
// Returns the command that should be used to launch Python.
bool GetPythonCommand(CommandLine* python_cmd) WARN_UNUSED_RESULT;
« no previous file with comments | « net/http/infinite_cache.h ('k') | net/url_request/url_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698