blob: 04cbb28c1b9cdab5631b3a965e3e8ef1901b283e (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
// Copyright (c) 2012 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_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
#define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "components/content_settings/core/common/content_settings.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "ui/views/controls/button/button.h"
#include "ui/views/controls/tabbed_pane/tabbed_pane_listener.h"
#include "ui/views/controls/tree/tree_view_controller.h"
#include "ui/views/window/dialog_delegate.h"
class CookieInfoView;
class CookiesTreeModel;
class InfobarView;
namespace content {
class WebContents;
}
namespace views {
class Label;
class LabelButton;
class TreeView;
class Widget;
}
// This is the Views implementation of the collected cookies dialog.
//
// CollectedCookiesViews is a dialog that displays the allowed and blocked
// cookies of the current tab contents. To display the dialog, invoke
// ShowCollectedCookiesDialog() on the delegate of the WebContents's
// content settings tab helper.
class CollectedCookiesViews : public views::DialogDelegateView,
public content::NotificationObserver,
public views::ButtonListener,
public views::TabbedPaneListener,
public views::TreeViewController {
public:
// Use BrowserWindow::ShowCollectedCookiesDialog to show.
explicit CollectedCookiesViews(content::WebContents* web_contents);
// views::DialogDelegate:
base::string16 GetWindowTitle() const override;
int GetDialogButtons() const override;
base::string16 GetDialogButtonLabel(ui::DialogButton button) const override;
bool Cancel() override;
ui::ModalType GetModalType() const override;
// views::ButtonListener:
void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// views::TabbedPaneListener:
void TabSelectedAt(int index) override;
// views::TreeViewController:
void OnTreeViewSelectionChanged(views::TreeView* tree_view) override;
// views::View:
gfx::Size GetMinimumSize() const override;
void ViewHierarchyChanged(
const ViewHierarchyChangedDetails& details) override;
private:
friend class CollectedCookiesViewsTest;
~CollectedCookiesViews() override;
void Init();
views::View* CreateAllowedPane();
views::View* CreateBlockedPane();
// Creates and returns a containing ScrollView around the given tree view.
views::View* CreateScrollView(views::TreeView* pane);
void EnableControls();
void ShowCookieInfo();
void AddContentException(views::TreeView* tree_view, ContentSetting setting);
// content::NotificationObserver:
void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) override;
content::NotificationRegistrar registrar_;
// The web contents.
content::WebContents* web_contents_;
// Assorted views.
views::Label* allowed_label_;
views::Label* blocked_label_;
views::TreeView* allowed_cookies_tree_;
views::TreeView* blocked_cookies_tree_;
views::LabelButton* block_allowed_button_;
views::LabelButton* delete_allowed_button_;
views::LabelButton* allow_blocked_button_;
views::LabelButton* for_session_blocked_button_;
scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_;
scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_;
CookieInfoView* cookie_info_view_;
InfobarView* infobar_;
bool status_changed_;
DISALLOW_COPY_AND_ASSIGN(CollectedCookiesViews);
};
#endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_VIEWS_H_
|