diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-15 20:18:09 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-15 20:18:09 +0000 |
commit | dcd16611096dcc5e7651763ff888135e0fb305fc (patch) | |
tree | fe1f69c236a92bd701bad04a6ccc1d30c08c6217 /chrome/browser/performance_monitor | |
parent | 6dd1c54f48283e9c61b097b59feecf8d221e123b (diff) | |
download | chromium_src-dcd16611096dcc5e7651763ff888135e0fb305fc.zip chromium_src-dcd16611096dcc5e7651763ff888135e0fb305fc.tar.gz chromium_src-dcd16611096dcc5e7651763ff888135e0fb305fc.tar.bz2 |
Move PathIsWritable, DirectoryExists, ContentsEqual, and TextContentsEqual to the base namespace.
TBR=sky
Review URL: https://codereview.chromium.org/19052005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211675 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/performance_monitor')
-rw-r--r-- | chrome/browser/performance_monitor/database.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/performance_monitor/database.cc b/chrome/browser/performance_monitor/database.cc index 36bc93c..c08c2b8 100644 --- a/chrome/browser/performance_monitor/database.cc +++ b/chrome/browser/performance_monitor/database.cc @@ -91,7 +91,7 @@ scoped_ptr<Database> Database::Create(base::FilePath path) { path = path.AppendASCII(kDbDir); } scoped_ptr<Database> database; - if (!file_util::DirectoryExists(path) && !file_util::CreateDirectory(path)) + if (!base::DirectoryExists(path) && !file_util::CreateDirectory(path)) return database.Pass(); database.reset(new Database(path)); |