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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // PermissionSelectorViewObserver implementation. | 59 // PermissionSelectorViewObserver implementation. |
60 virtual void OnPermissionChanged( | 60 virtual void OnPermissionChanged( |
61 PermissionSelectorView* selector) OVERRIDE; | 61 PermissionSelectorView* selector) OVERRIDE; |
62 | 62 |
63 // views::BubbleDelegate implementations. | 63 // views::BubbleDelegate implementations. |
64 virtual gfx::Rect GetAnchorRect() OVERRIDE; | 64 virtual gfx::Rect GetAnchorRect() OVERRIDE; |
65 virtual void OnWidgetClosing(views::Widget* widget) OVERRIDE; | 65 virtual void OnWidgetClosing(views::Widget* widget) OVERRIDE; |
66 | 66 |
67 // views::ButtonListener implementation. | 67 // views::ButtonListener implementation. |
68 virtual void ButtonPressed(views::Button* button, | 68 virtual void ButtonPressed(views::Button* button, |
69 const views::Event& event) OVERRIDE; | 69 const ui::Event& event) OVERRIDE; |
70 | 70 |
71 // views::LinkListener implementation. | 71 // views::LinkListener implementation. |
72 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE; | 72 virtual void LinkClicked(views::Link* source, int event_flags) OVERRIDE; |
73 | 73 |
74 // views::TabbedPaneListener implementations. | 74 // views::TabbedPaneListener implementations. |
75 virtual void TabSelectedAt(int index) OVERRIDE; | 75 virtual void TabSelectedAt(int index) OVERRIDE; |
76 | 76 |
77 // views::View implementation. | 77 // views::View implementation. |
78 virtual gfx::Size GetPreferredSize() OVERRIDE; | 78 virtual gfx::Size GetPreferredSize() OVERRIDE; |
79 | 79 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 // provide a certificate then |cert_id_| is 0. | 144 // provide a certificate then |cert_id_| is 0. |
145 int cert_id_; | 145 int cert_id_; |
146 | 146 |
147 views::View* connection_info_content_; | 147 views::View* connection_info_content_; |
148 views::View* page_info_content_; | 148 views::View* page_info_content_; |
149 | 149 |
150 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); | 150 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); |
151 }; | 151 }; |
152 | 152 |
153 #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 |