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

Unified Diff: dbus/string_util.cc

Issue 1172183002: Move StartsWith[ASCII] to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string_util3
Patch Set: merger Created 5 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 | « content/renderer/savable_resources.cc ('k') | extensions/browser/api/cast_channel/logger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/string_util.cc
diff --git a/dbus/string_util.cc b/dbus/string_util.cc
index f35c9b3a7bc6a1ac0ea64a38cc279fbbf6f830b8..0323e4ad06758962e253da1db82ccf54b5dea273 100644
--- a/dbus/string_util.cc
+++ b/dbus/string_util.cc
@@ -14,7 +14,7 @@ bool IsValidObjectPath(const std::string& value) {
const bool kCaseSensitive = true;
// A valid object path begins with '/'.
- if (!StartsWithASCII(value, "/", kCaseSensitive))
+ if (!base::StartsWithASCII(value, "/", kCaseSensitive))
return false;
// Elements are pieces delimited by '/'. For instance, "org", "chromium",
« no previous file with comments | « content/renderer/savable_resources.cc ('k') | extensions/browser/api/cast_channel/logger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698