summaryrefslogtreecommitdiffstats
path: root/content/public/browser/indexed_db_context.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-16 06:26:31 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-16 06:26:31 +0000
commitc42de73d768e53ea90903357ced6ef6001fb7b2f (patch)
treee3df82e3ce2194a069f5c26c0784ed56cb26b231 /content/public/browser/indexed_db_context.h
parenta6ba33f4132b66b3e11d26f43eecde12e5a0bbc9 (diff)
downloadchromium_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/public/browser/indexed_db_context.h')
-rw-r--r--content/public/browser/indexed_db_context.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/public/browser/indexed_db_context.h b/content/public/browser/indexed_db_context.h
index 01ce269..9d87444f 100644
--- a/content/public/browser/indexed_db_context.h
+++ b/content/public/browser/indexed_db_context.h
@@ -32,7 +32,8 @@ class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> {
virtual void DeleteForOrigin(const GURL& origin_url) = 0;
// Get the file name of the local storage file for the given origin.
- virtual FilePath GetFilePathForTesting(const string16& origin_id) const = 0;
+ virtual base::FilePath GetFilePathForTesting(
+ const string16& origin_id) const = 0;
protected:
friend class base::RefCountedThreadSafe<IndexedDBContext>;