Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Unified Diff: app/combobox_model.h

Issue 3159031: Remove wstrings from bookmarks, part 12. (Closed)
Patch Set: rebased ToT Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/bookmarks/recently_used_folders_combo_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/combobox_model.h
diff --git a/app/combobox_model.h b/app/combobox_model.h
index 0159014d4d5d684fe52b19d33eea6a184b032fa3..da27135e3b561ab665bc086e120966140c5417e8 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_
« no previous file with comments | « no previous file | chrome/browser/bookmarks/recently_used_folders_combo_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698