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

Unified Diff: chrome/browser/extensions/api/commands/command_service.cc

Issue 1200393002: Add more string_util functions to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@string
Patch Set: Android 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
Index: chrome/browser/extensions/api/commands/command_service.cc
diff --git a/chrome/browser/extensions/api/commands/command_service.cc b/chrome/browser/extensions/api/commands/command_service.cc
index 45be93b6823a8acbec5949112fb36b5b33c42adb..0f57c603125edcd8e5f822e25904dabd43083660 100644
--- a/chrome/browser/extensions/api/commands/command_service.cc
+++ b/chrome/browser/extensions/api/commands/command_service.cc
@@ -75,8 +75,8 @@ bool IsForCurrentPlatform(const std::string& key) {
std::string StripCurrentPlatform(const std::string& key) {
DCHECK(IsForCurrentPlatform(key));
std::string result = key;
- ReplaceFirstSubstringAfterOffset(&result, 0, Command::CommandPlatform() + ":",
- "");
+ base::ReplaceFirstSubstringAfterOffset(
+ &result, 0, Command::CommandPlatform() + ":", base::StringPiece());
return result;
}

Powered by Google App Engine
This is Rietveld 408576698