summaryrefslogtreecommitdiffstats
path: root/app/combobox_model.h
diff options
context:
space:
mode:
Diffstat (limited to 'app/combobox_model.h')
-rw-r--r--app/combobox_model.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/combobox_model.h b/app/combobox_model.h
index 0159014..da27135 100644
--- a/app/combobox_model.h
+++ b/app/combobox_model.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// 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,7 +6,7 @@
#define APP_COMBOBOX_MODEL_H_
#pragma once
-#include <string>
+#include "base/string16.h"
// The interface for models backing a combobox.
class ComboboxModel {
@@ -17,7 +17,7 @@ class ComboboxModel {
virtual int GetItemCount() = 0;
// Return the string that should be used to represent a given item.
- virtual std::wstring GetItemAt(int index) = 0;
+ virtual string16 GetItemAt(int index) = 0;
};
#endif // APP_COMBOBOX_MODEL_H_