blob: 56e3b8d82762dcc101bb8752584d9d045b575441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// 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.
#ifndef CHROME_BROWSER_DEFAULT_ENCODING_COMBO_MODEL_H_
#define CHROME_BROWSER_DEFAULT_ENCODING_COMBO_MODEL_H_
#pragma once
#include <string>
#include <vector>
#include "app/combobox_model.h"
#include "chrome/browser/character_encoding.h"
class Profile;
class DefaultEncodingComboboxModel : public ComboboxModel {
public:
DefaultEncodingComboboxModel();
virtual ~DefaultEncodingComboboxModel() {}
// Overridden from ComboboxModel.
virtual int GetItemCount() {
return static_cast<int>(sorted_encoding_list_.size());
}
virtual std::wstring GetItemAt(int index);
std::string GetEncodingCharsetByIndex(int index);
int GetSelectedEncodingIndex(Profile* profile);
private:
std::vector<CharacterEncoding::EncodingInfo> sorted_encoding_list_;
DISALLOW_COPY_AND_ASSIGN(DefaultEncodingComboboxModel);
};
#endif // CHROME_BROWSER_DEFAULT_ENCODING_COMBO_MODEL_H_
|