summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-11 04:29:00 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-11 04:29:00 +0000
commite37f55edc51cec88fd4b6c0e837b6d85fddc8919 (patch)
tree086174dc8dd89df9921fedcb3863761a5f0f9584
parent52d6c32079653fc367ae0a84f63bab0ea923e5c1 (diff)
downloadchromium_src-e37f55edc51cec88fd4b6c0e837b6d85fddc8919.zip
chromium_src-e37f55edc51cec88fd4b6c0e837b6d85fddc8919.tar.gz
chromium_src-e37f55edc51cec88fd4b6c0e837b6d85fddc8919.tar.bz2
Use a direct include of strings headers in content/app/.
BUG=247723 TEST=none TBR=ben@chromium.org Review URL: https://chromiumcodereview.appspot.com/16716003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205409 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/app/android/library_loader_hooks.cc2
-rw-r--r--content/app/content_main_runner.cc6
2 files changed, 4 insertions, 4 deletions
diff --git a/content/app/android/library_loader_hooks.cc b/content/app/android/library_loader_hooks.cc
index beaf6bf..67ed6c1 100644
--- a/content/app/android/library_loader_hooks.cc
+++ b/content/app/android/library_loader_hooks.cc
@@ -14,7 +14,7 @@
#include "base/debug/trace_event.h"
#include "base/files/file_path.h"
#include "base/logging.h"
-#include "base/string_util.h"
+#include "base/strings/string_util.h"
#include "base/tracked_objects.h"
#include "content/app/android/app_jni_registrar.h"
#include "content/browser/android/browser_jni_registrar.h"
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc
index 8c6bd29..cecb572 100644
--- a/content/app/content_main_runner.cc
+++ b/content/app/content_main_runner.cc
@@ -20,9 +20,9 @@
#include "base/path_service.h"
#include "base/process_util.h"
#include "base/profiler/alternate_timer.h"
-#include "base/string_number_conversions.h"
-#include "base/string_util.h"
-#include "base/stringprintf.h"
+#include "base/strings/string_number_conversions.h"
+#include "base/strings/string_util.h"
+#include "base/strings/stringprintf.h"
#include "content/browser/browser_main.h"
#include "content/common/set_process_title.h"
#include "content/common/url_schemes.h"