blob: f4f59e893ecf1cee3e6f1ecd5a62eb91f9a5478f (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// 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_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_
#define CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_
#pragma once
#include <deque>
#include "chrome/browser/host_content_settings_map.h"
#include "chrome/browser/remove_rows_table_model.h"
#include "chrome/common/notification_observer.h"
#include "webkit/glue/plugins/plugin_list.h"
namespace plugin_test_internal {
class PluginExceptionsTableModelTest;
}
struct WebPluginInfo;
class PluginExceptionsTableModel : public RemoveRowsTableModel,
public NotificationObserver {
public:
PluginExceptionsTableModel(HostContentSettingsMap* content_settings_map,
HostContentSettingsMap* otr_content_settings_map);
virtual ~PluginExceptionsTableModel();
// Load plugin exceptions from the HostContentSettingsMaps. You should call
// this method after creating a new PluginExceptionsTableModel.
void LoadSettings();
// RemoveRowsTableModel methods:
virtual bool CanRemoveRows(const Rows& rows) const;
virtual void RemoveRows(const Rows& rows);
virtual void RemoveAll();
// TableModel methods:
virtual int RowCount();
virtual std::wstring GetText(int row, int column_id);
virtual void SetObserver(TableModelObserver* observer);
virtual bool HasGroups() { return true; }
virtual Groups GetGroups();
virtual int GetGroupID(int row);
// NotificationObserver methods:
virtual void Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details);
protected:
// Subclasses can override this method for testing.
virtual void GetPlugins(NPAPI::PluginList::PluginMap* plugins);
private:
friend class plugin_test_internal::PluginExceptionsTableModelTest;
struct SettingsEntry {
HostContentSettingsMap::Pattern pattern;
int plugin_id;
ContentSetting setting;
bool is_otr;
};
void ClearSettings();
void ReloadSettings();
scoped_refptr<HostContentSettingsMap> map_;
scoped_refptr<HostContentSettingsMap> otr_map_;
std::deque<SettingsEntry> settings_;
std::deque<int> row_counts_;
std::deque<std::string> resources_;
TableModel::Groups groups_;
NotificationRegistrar registrar_;
bool updates_disabled_;
TableModelObserver* observer_;
DISALLOW_COPY_AND_ASSIGN(PluginExceptionsTableModel);
};
#endif // CHROME_BROWSER_PLUGIN_EXCEPTIONS_TABLE_MODEL_H_
|