commit | dcd16611096dcc5e7651763ff888135e0fb305fc | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Mon Jul 15 20:18:09 2013 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Mon Jul 15 20:18:09 2013 |
tree | fe1f69c236a92bd701bad04a6ccc1d30c08c6217 | |
parent | 6dd1c54f48283e9c61b097b59feecf8d221e123b [diff] [blame] |
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
diff --git a/chrome/browser/component_updater/component_patcher_operation.cc b/chrome/browser/component_updater/component_patcher_operation.cc index ba849189..3f5f46a 100644 --- a/chrome/browser/component_updater/component_patcher_operation.cc +++ b/chrome/browser/component_updater/component_patcher_operation.cc
@@ -72,7 +72,7 @@ return parse_result; const base::FilePath parent = output_abs_path_.DirName(); - if (!file_util::DirectoryExists(parent)) { + if (!base::DirectoryExists(parent)) { if (!file_util::CreateDirectory(parent)) return ComponentUnpacker::kIoError; }