diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 06:26:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-16 06:26:31 +0000 |
commit | c42de73d768e53ea90903357ced6ef6001fb7b2f (patch) | |
tree | e3df82e3ce2194a069f5c26c0784ed56cb26b231 /content/shell/paths_mac.mm | |
parent | a6ba33f4132b66b3e11d26f43eecde12e5a0bbc9 (diff) | |
download | chromium_src-c42de73d768e53ea90903357ced6ef6001fb7b2f.zip chromium_src-c42de73d768e53ea90903357ced6ef6001fb7b2f.tar.gz chromium_src-c42de73d768e53ea90903357ced6ef6001fb7b2f.tar.bz2 |
Replace all FilePath with base::FilePath in content.
This is im preparation for removing the 'using" in file_path.h
Review URL: https://codereview.chromium.org/12226120
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182940 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/paths_mac.mm')
-rw-r--r-- | content/shell/paths_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/shell/paths_mac.mm b/content/shell/paths_mac.mm index 120ca34..a2a2993 100644 --- a/content/shell/paths_mac.mm +++ b/content/shell/paths_mac.mm @@ -56,5 +56,5 @@ base::FilePath GetResourcesPakFilePath() { [base::mac::FrameworkBundle() pathForResource:@"content_shell" ofType:@"pak"]; - return FilePath([pak_path fileSystemRepresentation]); + return base::FilePath([pak_path fileSystemRepresentation]); } |