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

Unified Diff: chrome/browser/default_encoding_combo_model.h

Issue 3461019: FBTF: Move virtual methods to implementation files. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Win+chromeos+mac fixes Created 10 years, 3 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
Index: chrome/browser/default_encoding_combo_model.h
diff --git a/chrome/browser/default_encoding_combo_model.h b/chrome/browser/default_encoding_combo_model.h
index 52835071fbcba9f66e56e7d12283a47b23ed4257..a4d5a506f814e090b245a9bdde5c2b385abc690c 100644
--- a/chrome/browser/default_encoding_combo_model.h
+++ b/chrome/browser/default_encoding_combo_model.h
@@ -17,12 +17,10 @@ class Profile;
class DefaultEncodingComboboxModel : public ComboboxModel {
public:
DefaultEncodingComboboxModel();
- virtual ~DefaultEncodingComboboxModel() {}
+ virtual ~DefaultEncodingComboboxModel();
// Overridden from ComboboxModel.
- virtual int GetItemCount() {
- return static_cast<int>(sorted_encoding_list_.size());
- }
+ virtual int GetItemCount();
virtual string16 GetItemAt(int index);

Powered by Google App Engine
This is Rietveld 408576698