diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-11 17:36:07 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-11 17:36:07 +0000 |
commit | 7567484144da059e2c2c2a818b06660a5459052f (patch) | |
tree | a4ceafc7e890051c25dbdd54b170d0f5794dd229 /base/win | |
parent | 8a25d54d6eb190a8b82479b5309a892c1080a372 (diff) | |
download | chromium_src-7567484144da059e2c2c2a818b06660a5459052f.zip chromium_src-7567484144da059e2c2c2a818b06660a5459052f.tar.gz chromium_src-7567484144da059e2c2c2a818b06660a5459052f.tar.bz2 |
Move PathExists to base namespace.
BUG=
TBR=jam@chromium.org
Review URL: https://codereview.chromium.org/18286004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211147 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/win')
-rw-r--r-- | base/win/shortcut.cc | 2 | ||||
-rw-r--r-- | base/win/shortcut_unittest.cc | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/base/win/shortcut.cc b/base/win/shortcut.cc index eb7a72c..57a93dc 100644 --- a/base/win/shortcut.cc +++ b/base/win/shortcut.cc @@ -53,7 +53,7 @@ bool CreateOrUpdateShortcutLink(const FilePath& shortcut_path, return false; } - bool shortcut_existed = file_util::PathExists(shortcut_path); + bool shortcut_existed = PathExists(shortcut_path); // Interfaces to the old shortcut when replacing an existing shortcut. ScopedComPtr<IShellLink> old_i_shell_link; diff --git a/base/win/shortcut_unittest.cc b/base/win/shortcut_unittest.cc index 56f3b4a..b3247b6 100644 --- a/base/win/shortcut_unittest.cc +++ b/base/win/shortcut_unittest.cc @@ -212,7 +212,7 @@ TEST_F(ShortcutTest, UpdateShortcutClearArguments) { TEST_F(ShortcutTest, FailUpdateShortcutThatDoesNotExist) { ASSERT_FALSE(CreateOrUpdateShortcutLink( link_file_, link_properties_, SHORTCUT_UPDATE_EXISTING)); - ASSERT_FALSE(file_util::PathExists(link_file_)); + ASSERT_FALSE(PathExists(link_file_)); } TEST_F(ShortcutTest, ReplaceShortcutAllProperties) { @@ -249,7 +249,7 @@ TEST_F(ShortcutTest, ReplaceShortcutSomeProperties) { TEST_F(ShortcutTest, FailReplaceShortcutThatDoesNotExist) { ASSERT_FALSE(CreateOrUpdateShortcutLink( link_file_, link_properties_, SHORTCUT_REPLACE_EXISTING)); - ASSERT_FALSE(file_util::PathExists(link_file_)); + ASSERT_FALSE(PathExists(link_file_)); } // Test that the old arguments remain on the replaced shortcut when not |