summaryrefslogtreecommitdiffstats
path: root/gin
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-11 20:59:02 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-11 20:59:02 +0000
commit37b3c199da23208121a946491ce749bafeb573c2 (patch)
tree1f12a473162863cd3c2507f08f53ec910e2da57d /gin
parentce4ac5324890624e6688f7bb732a4c7ab701c2b4 (diff)
downloadchromium_src-37b3c199da23208121a946491ce749bafeb573c2.zip
chromium_src-37b3c199da23208121a946491ce749bafeb573c2.tar.gz
chromium_src-37b3c199da23208121a946491ce749bafeb573c2.tar.bz2
Move AppendFile and *CurrentDirectory to the base namespace.
This moves AppendFile, GetCurrentDirectory, and SetCurrentDirectory to the base namespace. TBR=jam Review URL: https://codereview.chromium.org/177923007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256309 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gin')
-rw-r--r--gin/shell/gin_main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gin/shell/gin_main.cc b/gin/shell/gin_main.cc
index 3b990f0..6673b6a 100644
--- a/gin/shell/gin_main.cc
+++ b/gin/shell/gin_main.cc
@@ -33,7 +33,7 @@ void Run(base::WeakPtr<Runner> runner, const base::FilePath& path) {
std::vector<base::FilePath> GetModuleSearchPaths() {
std::vector<base::FilePath> module_base(1);
- CHECK(file_util::GetCurrentDirectory(&module_base[0]));
+ CHECK(base::GetCurrentDirectory(&module_base[0]));
return module_base;
}