diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-14 05:34:18 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-14 05:34:18 +0000 |
commit | caa55f3e114021dccc1935ed6fbac6247dca3eb7 (patch) | |
tree | e3b0329230db60169b04c705d79f43f096057aab /views/controls/combobox/native_combobox_gtk.cc | |
parent | 4cc5a8747adf8327ba0df645237c1d5f52690caf (diff) | |
download | chromium_src-caa55f3e114021dccc1935ed6fbac6247dca3eb7.zip chromium_src-caa55f3e114021dccc1935ed6fbac6247dca3eb7.tar.gz chromium_src-caa55f3e114021dccc1935ed6fbac6247dca3eb7.tar.bz2 |
chromeos: string_util.h -> utf_string_conversions.h fix.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/851010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41539 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/combobox/native_combobox_gtk.cc')
-rw-r--r-- | views/controls/combobox/native_combobox_gtk.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/views/controls/combobox/native_combobox_gtk.cc b/views/controls/combobox/native_combobox_gtk.cc index 581fea3..fd0526a 100644 --- a/views/controls/combobox/native_combobox_gtk.cc +++ b/views/controls/combobox/native_combobox_gtk.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this +// 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. @@ -6,9 +6,11 @@ #include <gtk/gtk.h> +#include <algorithm> + #include "app/combobox_model.h" #include "base/logging.h" -#include "base/string_util.h" +#include "base/utf_string_conversions.h" #include "views/controls/combobox/combobox.h" namespace views { |