OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/dom_ui/options/dom_options_util.h" |
| 6 |
| 7 #include "base/string_util.h" |
| 8 |
| 9 namespace dom_options_util { |
| 10 |
| 11 string16 StripColon(const string16& str) { |
| 12 const string16::value_type kColon[] = {':',0}; |
| 13 string16 result; |
| 14 RemoveChars(str, kColon, &result); |
| 15 return result; |
| 16 } |
| 17 |
| 18 } // namespace dom_options_util |
OLD | NEW |