diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-07 00:04:53 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-07 00:04:53 +0000 |
commit | 5a6ddb19886d009376be90a25b14e5a10a26b586 (patch) | |
tree | a4b11d08ca7feee8ccbef9074fe16b0b1f78f0db /content/gpu | |
parent | b2ed3971b1a3a1f13c95d5144652e6c519c10c47 (diff) | |
download | chromium_src-5a6ddb19886d009376be90a25b14e5a10a26b586.zip chromium_src-5a6ddb19886d009376be90a25b14e5a10a26b586.tar.gz chromium_src-5a6ddb19886d009376be90a25b14e5a10a26b586.tar.bz2 |
Move more file_util functions to base namespace.
TBR=sky
Review URL: https://codereview.chromium.org/109043002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239280 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/gpu')
-rw-r--r-- | content/gpu/gpu_watchdog_thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/gpu/gpu_watchdog_thread.cc b/content/gpu/gpu_watchdog_thread.cc index b644aec..940d07e 100644 --- a/content/gpu/gpu_watchdog_thread.cc +++ b/content/gpu/gpu_watchdog_thread.cc @@ -57,7 +57,7 @@ GpuWatchdogThread::GpuWatchdogThread(int timeout) #endif #if defined(OS_CHROMEOS) - tty_file_ = file_util::OpenFile(base::FilePath(kTtyFilePath), "r"); + tty_file_ = base::OpenFile(base::FilePath(kTtyFilePath), "r"); #endif watched_message_loop_->AddTaskObserver(&task_observer_); } |