On Linux, the path to the exe is used to fork renderer processes.
This was causing the browser tests to create browser tests instead of a renderer processes.
Also the SSL tests now pass on Linux and have been enabled.
BUG=None
TEST=Run the browser tests on Linux.
Review URL: http://codereview.chromium.org/146057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19257 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/base/path_service.h b/base/path_service.h
index 54d7ade..9cd0889 100644
--- a/base/path_service.h
+++ b/base/path_service.h
@@ -48,6 +48,9 @@
//
// WARNING: Consumers of PathService::Get may expect paths to be constant
// over the lifetime of the app, so this method should be used with caution.
+ static bool Override(int key, const FilePath& path);
+ // This version, using a wstring, is deprecated and only kept around
+ // until we can fix all callers.
static bool Override(int key, const std::wstring& path);
// Return whether a path was overridden.