Index: chrome/browser/dom_ui/options/options_util.cc |
diff --git a/chrome/browser/dom_ui/options/options_util.cc b/chrome/browser/dom_ui/options/options_util.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..918c0db1a5d69aa1d5fbeffdceeb9bd9a25078d2 |
--- /dev/null |
+++ b/chrome/browser/dom_ui/options/options_util.cc |
@@ -0,0 +1,18 @@ |
+// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/dom_ui/options/options_util.h" |
+ |
+#include "base/string_util.h" |
+ |
+namespace options_util { |
+ |
+string16 StripColon(const string16& str) { |
+ const string16::value_type kColon[] = {':',0}; |
+ string16 result; |
+ RemoveChars(str, kColon, &result); |
+ return result; |
+} |
+ |
+} // namespace options_util |