OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_COLLECTED_COOKIES_WIN_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/common/content_settings.h" | 10 #include "chrome/common/content_settings.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 views::View* CreateBlockedPane(); | 74 views::View* CreateBlockedPane(); |
75 | 75 |
76 void EnableControls(); | 76 void EnableControls(); |
77 | 77 |
78 void ShowCookieInfo(); | 78 void ShowCookieInfo(); |
79 | 79 |
80 void AddContentException(views::TreeView* tree_view, ContentSetting setting); | 80 void AddContentException(views::TreeView* tree_view, ContentSetting setting); |
81 | 81 |
82 // NotificationObserver: | 82 // NotificationObserver: |
83 virtual void Observe(NotificationType type, | 83 virtual void Observe(int type, |
84 const NotificationSource& source, | 84 const NotificationSource& source, |
85 const NotificationDetails& details) OVERRIDE; | 85 const NotificationDetails& details) OVERRIDE; |
86 | 86 |
87 NotificationRegistrar registrar_; | 87 NotificationRegistrar registrar_; |
88 | 88 |
89 ConstrainedWindow* window_; | 89 ConstrainedWindow* window_; |
90 | 90 |
91 // The tab contents. | 91 // The tab contents. |
92 TabContents* tab_contents_; | 92 TabContents* tab_contents_; |
93 | 93 |
(...skipping 14 matching lines...) Expand all Loading... |
108 CookieInfoView* cookie_info_view_; | 108 CookieInfoView* cookie_info_view_; |
109 | 109 |
110 InfobarView* infobar_; | 110 InfobarView* infobar_; |
111 | 111 |
112 bool status_changed_; | 112 bool status_changed_; |
113 | 113 |
114 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesWin); | 114 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesWin); |
115 }; | 115 }; |
116 | 116 |
117 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ | 117 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ |
OLD | NEW |