diff options
author | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 00:02:26 +0000 |
---|---|---|
committer | avi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-27 00:02:26 +0000 |
commit | ca370a589bf573e24e97bb4032e6d04d055c1b92 (patch) | |
tree | baf069522ba4abbfb91c3dd4553345077b7d9963 /webkit/glue/webkit_glue.h | |
parent | 78346405241cb4b27d7a031de538b285ff89c65f (diff) | |
download | chromium_src-ca370a589bf573e24e97bb4032e6d04d055c1b92.zip chromium_src-ca370a589bf573e24e97bb4032e6d04d055c1b92.tar.gz chromium_src-ca370a589bf573e24e97bb4032e6d04d055c1b92.tar.bz2 |
Uses FilePath instead of std::wstring in webkit_glue::GetApplicationDirectory.
Patch by tfarina.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/173304
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24565 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webkit_glue.h')
-rw-r--r-- | webkit/glue/webkit_glue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webkit_glue.h b/webkit/glue/webkit_glue.h index c52f0b1..ebe6f11 100644 --- a/webkit/glue/webkit_glue.h +++ b/webkit/glue/webkit_glue.h @@ -166,7 +166,7 @@ void ClipboardReadHTML(string16* markup, GURL* url); // GetExeDirectory(), depending on the embedder's implementation. // Path is an output parameter to receive the path. // Returns true if successful, false otherwise. -bool GetApplicationDirectory(std::wstring* path); +bool GetApplicationDirectory(FilePath* path); // Gets the URL where the inspector's HTML file resides. It must use the // protocol returned by GetUIResourceProtocol. @@ -179,7 +179,7 @@ std::string GetUIResourceProtocol(); // Gets the directory where the launching executable resides on disk. // Path is an output parameter to receive the path. // Returns true if successful, false otherwise. -bool GetExeDirectory(std::wstring* path); +bool GetExeDirectory(FilePath* path); // Embedders implement this function to return the list of plugins to Webkit. void GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins); |