OLD | NEW |
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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 void ResetConnectionSection(views::View* section_container, | 109 void ResetConnectionSection(views::View* section_container, |
110 const gfx::Image& icon, | 110 const gfx::Image& icon, |
111 const string16& headline, | 111 const string16& headline, |
112 const string16& text, | 112 const string16& text, |
113 views::Link* link); | 113 views::Link* link); |
114 | 114 |
115 // The tab contents of the current tab. The popup can't live longer than a | 115 // The tab contents of the current tab. The popup can't live longer than a |
116 // tab. | 116 // tab. |
117 TabContents* tab_contents_; | 117 TabContents* tab_contents_; |
118 | 118 |
119 // The presenter that controlls the Website Settings UI. |presenter_| is null | 119 // The presenter that controlls the Website Settings UI. |
120 // if the popup is opened for a internal chrome url. | |
121 scoped_ptr<WebsiteSettings> presenter_; | 120 scoped_ptr<WebsiteSettings> presenter_; |
122 | 121 |
123 PopupHeaderView* header_; // Owned by views hierarchy. | 122 PopupHeaderView* header_; // Owned by views hierarchy. |
124 | 123 |
125 // The |TabbedPane| that contains the tabs of the Website Settings UI. | 124 // The |TabbedPane| that contains the tabs of the Website Settings UI. |
126 views::TabbedPane* tabbed_pane_; | 125 views::TabbedPane* tabbed_pane_; |
127 | 126 |
128 // The view that contains the contents of the "Cookies and Site data" section | 127 // The view that contains the contents of the "Cookies and Site data" section |
129 // from the "Permissions" tab. | 128 // from the "Permissions" tab. |
130 views::View* site_data_content_; | 129 views::View* site_data_content_; |
(...skipping 14 matching lines...) Expand all Loading... |
145 // provide a certificate then |cert_id_| is 0. | 144 // provide a certificate then |cert_id_| is 0. |
146 int cert_id_; | 145 int cert_id_; |
147 | 146 |
148 views::View* connection_info_content_; | 147 views::View* connection_info_content_; |
149 views::View* page_info_content_; | 148 views::View* page_info_content_; |
150 | 149 |
151 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); | 150 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); |
152 }; | 151 }; |
153 | 152 |
154 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_
H_ | 153 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_
H_ |
OLD | NEW |