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

Side by Side Diff: chrome/browser/ui/views/website_settings/website_settings_popup_view.h

Issue 2448943002: Refactor SecurityStateModel/Clients for simplicity and reusability. (Closed)
Patch Set: Remove *SecurityModelClient. Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "chrome/browser/ui/views/website_settings/chosen_object_row_observer.h" 13 #include "chrome/browser/ui/views/website_settings/chosen_object_row_observer.h"
14 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h" 14 #include "chrome/browser/ui/views/website_settings/permission_selector_row_obser ver.h"
15 #include "chrome/browser/ui/website_settings/website_settings_ui.h" 15 #include "chrome/browser/ui/website_settings/website_settings_ui.h"
16 #include "components/security_state/security_state_model.h" 16 #include "components/security_state/core/security_state_model.h"
17 #include "content/public/browser/web_contents_observer.h" 17 #include "content/public/browser/web_contents_observer.h"
18 #include "ui/views/bubble/bubble_dialog_delegate.h" 18 #include "ui/views/bubble/bubble_dialog_delegate.h"
19 #include "ui/views/controls/button/button.h" 19 #include "ui/views/controls/button/button.h"
20 #include "ui/views/controls/link_listener.h" 20 #include "ui/views/controls/link_listener.h"
21 #include "ui/views/controls/separator.h" 21 #include "ui/views/controls/separator.h"
22 #include "ui/views/controls/styled_label_listener.h" 22 #include "ui/views/controls/styled_label_listener.h"
23 23
24 class GURL; 24 class GURL;
25 class PopupHeaderView; 25 class PopupHeaderView;
26 class Profile; 26 class Profile;
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 169
170 // The certificate provided by the site, if one exists. 170 // The certificate provided by the site, if one exists.
171 scoped_refptr<net::X509Certificate> certificate_; 171 scoped_refptr<net::X509Certificate> certificate_;
172 172
173 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; 173 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_;
174 174
175 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); 175 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView);
176 }; 176 };
177 177
178 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_ 178 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698