summaryrefslogtreecommitdiffstats
path: root/gin
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2014-09-05 01:29:44 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-05 08:35:40 +0000
commit22dfc40185c63bd1278792fe422bd82c63ff6213 (patch)
tree32c3ce9c1935c7c160ab9c55f2d61a74b250daf9 /gin
parentfc6d9e5869b861a5cb82018a934c44b59f58687f (diff)
downloadchromium_src-22dfc40185c63bd1278792fe422bd82c63ff6213.zip
chromium_src-22dfc40185c63bd1278792fe422bd82c63ff6213.tar.gz
chromium_src-22dfc40185c63bd1278792fe422bd82c63ff6213.tar.bz2
Change base/file_utils.h includes to base/files/file_utils.h in gin, google_apis, printing, sql, ui, and webkit.
TBR=jochen@chromium.org,rogerta@chromium.org,shess@chromium.org,ben@chromium.org,jamesr@chromium.org Review URL: https://codereview.chromium.org/529273002 Cr-Commit-Position: refs/heads/master@{#293479}
Diffstat (limited to 'gin')
-rw-r--r--gin/modules/file_module_provider.cc2
-rw-r--r--gin/shell/gin_main.cc2
-rw-r--r--gin/shell/gin_shell_unittest.cc2
-rw-r--r--gin/test/file.cc2
-rw-r--r--gin/test/file_runner.cc2
-rw-r--r--gin/test/run_js_tests.cc2
6 files changed, 6 insertions, 6 deletions
diff --git a/gin/modules/file_module_provider.cc b/gin/modules/file_module_provider.cc
index aa46031..b8465ae 100644
--- a/gin/modules/file_module_provider.cc
+++ b/gin/modules/file_module_provider.cc
@@ -5,7 +5,7 @@
#include "gin/modules/file_module_provider.h"
#include "base/bind.h"
-#include "base/file_util.h"
+#include "base/files/file_util.h"
#include "base/message_loop/message_loop.h"
#include "base/strings/string_split.h"
#include "gin/converter.h"
diff --git a/gin/shell/gin_main.cc b/gin/shell/gin_main.cc
index d8c32ad..c8e3784 100644
--- a/gin/shell/gin_main.cc
+++ b/gin/shell/gin_main.cc
@@ -5,7 +5,7 @@
#include "base/at_exit.h"
#include "base/bind.h"
#include "base/command_line.h"
-#include "base/file_util.h"
+#include "base/files/file_util.h"
#include "base/i18n/icu_util.h"
#include "base/message_loop/message_loop.h"
#include "gin/modules/console.h"
diff --git a/gin/shell/gin_shell_unittest.cc b/gin/shell/gin_shell_unittest.cc
index f80d6b0..50e2ba3 100644
--- a/gin/shell/gin_shell_unittest.cc
+++ b/gin/shell/gin_shell_unittest.cc
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "base/command_line.h"
-#include "base/file_util.h"
+#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/process/launch.h"
#include "base/strings/string_util.h"
diff --git a/gin/test/file.cc b/gin/test/file.cc
index 87b7f4b..0ed24e3 100644
--- a/gin/test/file.cc
+++ b/gin/test/file.cc
@@ -7,9 +7,9 @@
#include <iostream>
#include "base/bind.h"
-#include "base/file_util.h"
#include "base/files/file_enumerator.h"
#include "base/files/file_path.h"
+#include "base/files/file_util.h"
#include "base/path_service.h"
#include "gin/arguments.h"
#include "gin/converter.h"
diff --git a/gin/test/file_runner.cc b/gin/test/file_runner.cc
index 82b55ad..a387289 100644
--- a/gin/test/file_runner.cc
+++ b/gin/test/file_runner.cc
@@ -4,7 +4,7 @@
#include "gin/test/file_runner.h"
-#include "base/file_util.h"
+#include "base/files/file_util.h"
#include "base/message_loop/message_loop.h"
#include "base/path_service.h"
#include "gin/converter.h"
diff --git a/gin/test/run_js_tests.cc b/gin/test/run_js_tests.cc
index f02c0f8..b83dc9f 100644
--- a/gin/test/run_js_tests.cc
+++ b/gin/test/run_js_tests.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "base/file_util.h"
+#include "base/files/file_util.h"
#include "base/path_service.h"
#include "gin/test/file_runner.h"
#include "testing/gtest/include/gtest/gtest.h"