diff options
Diffstat (limited to 'chrome/browser/webui/options/dom_options_util.cc')
-rw-r--r-- | chrome/browser/webui/options/dom_options_util.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chrome/browser/webui/options/dom_options_util.cc b/chrome/browser/webui/options/dom_options_util.cc new file mode 100644 index 0000000..2eb8ec3 --- /dev/null +++ b/chrome/browser/webui/options/dom_options_util.cc @@ -0,0 +1,20 @@ +// Copyright (c) 2011 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/dom_options_util.h" + +#include "base/string_util.h" + +namespace dom_options_util { + +// TODO(estade): update all strings that have a trailing colon once we get rid +// of the native dialogs. +string16 StripColon(const string16& str) { + const string16::value_type kColon[] = { ':', 0 }; + string16 result; + TrimString(str, kColon, &result); + return result; +} + +} // namespace dom_options_util |