blob: a4d5a506f814e090b245a9bdde5c2b385abc690c (
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
|
// 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();
virtual string16 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_
|