Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(428)

Unified Diff: remoting/host/json_host_config_unittest.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/json_host_config_unittest.cc
diff --git a/remoting/host/json_host_config_unittest.cc b/remoting/host/json_host_config_unittest.cc
index 76f2912f49bcbe66002c43816e1bf502814de894..a3fdf96d43f4d7df05442f97324bddd09c5c0eca 100644
--- a/remoting/host/json_host_config_unittest.cc
+++ b/remoting/host/json_host_config_unittest.cc
@@ -25,7 +25,7 @@ const char* kTestConfig =
class JsonHostConfigTest : public testing::Test {
protected:
static void WriteTestFile(const base::FilePath& filename) {
- file_util::WriteFile(filename, kTestConfig, std::strlen(kTestConfig));
+ base::WriteFile(filename, kTestConfig, std::strlen(kTestConfig));
}
// The temporary directory used to contain the test operations.
« no previous file with comments | « remoting/host/config_file_watcher_unittest.cc ('k') | remoting/host/setup/daemon_controller_delegate_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698