summaryrefslogtreecommitdiffstats
path: root/courgette/courgette.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-10 19:20:14 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-10 19:20:14 +0000
commit9e27571002528a10306e535427dda2571c0a2704 (patch)
tree18f200af44e816e434f9ccb8cfa7173caef17b4a /courgette/courgette.h
parent3ab5e0f10f73ef249452d8c5e2af11accb7c4606 (diff)
downloadchromium_src-9e27571002528a10306e535427dda2571c0a2704.zip
chromium_src-9e27571002528a10306e535427dda2571c0a2704.tar.gz
chromium_src-9e27571002528a10306e535427dda2571c0a2704.tar.bz2
More FilePath -> base::FilePath replacement.
Review URL: https://codereview.chromium.org/12225112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/courgette.h')
-rw-r--r--courgette/courgette.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/courgette/courgette.h b/courgette/courgette.h
index 2cd4cd7..6d3112d 100644
--- a/courgette/courgette.h
+++ b/courgette/courgette.h
@@ -77,9 +77,9 @@ Status ApplyEnsemblePatch(SourceStream* old, SourceStream* patch,
// Returns C_OK unless something went wrong.
// This function first validates that the patch file has a proper header, so the
// function can be used to 'try' a patch.
-Status ApplyEnsemblePatch(const FilePath::CharType* old_file_name,
- const FilePath::CharType* patch_file_name,
- const FilePath::CharType* new_file_name);
+Status ApplyEnsemblePatch(const base::FilePath::CharType* old_file_name,
+ const base::FilePath::CharType* patch_file_name,
+ const base::FilePath::CharType* new_file_name);
// Generates a patch that will transform the bytes in |old| into the bytes in
// |target|.