diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-19 22:54:41 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-19 22:54:41 +0000 |
commit | ab926d553d2fbab7f170826afa811a253a8a65c8 (patch) | |
tree | 76c577b278544269f2ee04412b9661528d57856e /base/path_service.h | |
parent | 02e60209512e8013f962d33c0916613b796cad84 (diff) | |
download | chromium_src-ab926d553d2fbab7f170826afa811a253a8a65c8.zip chromium_src-ab926d553d2fbab7f170826afa811a253a8a65c8.tar.gz chromium_src-ab926d553d2fbab7f170826afa811a253a8a65c8.tar.bz2 |
Deprecate PathService::Get(..., wstring*) and use FilePath instead.
I tried fixing all the Windows code but there's a *ton* of it.
This change will at least prevent people from adding new code that
uses the deprecated version (as that won't compile on Lin/Mac).
BUG=24672
Review URL: http://codereview.chromium.org/293013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29472 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/path_service.h')
-rw-r--r-- | base/path_service.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/path_service.h b/base/path_service.h index 39aaa2a..b0e51e4 100644 --- a/base/path_service.h +++ b/base/path_service.h @@ -26,9 +26,11 @@ class PathService { // Returns true if the directory or file was successfully retrieved. On // failure, 'path' will not be changed. static bool Get(int key, FilePath* path); +#if defined(OS_WIN) // This version, producing a wstring, is deprecated and only kept around // until we can fix all callers. static bool Get(int key, std::wstring* path); +#endif // Overrides the path to a special directory or file. This cannot be used to // change the value of DIR_CURRENT, but that should be obvious. Also, if the |