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

Unified Diff: base/strings/string_util.h

Issue 16320009: Use a direct include of strings headers in base/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
« no previous file with comments | « base/strings/string_split.cc ('k') | base/strings/sys_string_conversions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/strings/string_util.h
diff --git a/base/strings/string_util.h b/base/strings/string_util.h
index 7b4af7d37e4d311f4a88ed14cd08713498642a0a..d2a216efaf69481b71bb9604775e7811afded913 100644
--- a/base/strings/string_util.h
+++ b/base/strings/string_util.h
@@ -16,7 +16,7 @@
#include "base/base_export.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "base/string16.h"
+#include "base/strings/string16.h"
#include "base/strings/string_piece.h" // For implicit conversions.
// Safe standard library wrappers for all platforms.
@@ -146,9 +146,9 @@ template<typename Char> struct CaseInsensitiveCompareASCII {
} // namespace base
#if defined(OS_WIN)
-#include "base/string_util_win.h"
+#include "base/strings/string_util_win.h"
#elif defined(OS_POSIX)
-#include "base/string_util_posix.h"
+#include "base/strings/string_util_posix.h"
#else
#error Define string operations appropriately for your platform
#endif
« no previous file with comments | « base/strings/string_split.cc ('k') | base/strings/sys_string_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698