| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This is the Views implementation of the collected Cookies dialog. | 5 // This is the Views implementation of the collected Cookies dialog. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ | 7 #ifndef CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ |
| 8 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ | 8 #define CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ |
| 9 #pragma once | 9 #pragma once |
| 10 | 10 |
| 11 #include "chrome/browser/tab_contents/constrained_window.h" | |
| 12 #include "chrome/common/content_settings.h" | 11 #include "chrome/common/content_settings.h" |
| 13 #include "chrome/common/notification_observer.h" | 12 #include "chrome/common/notification_observer.h" |
| 14 #include "chrome/common/notification_registrar.h" | 13 #include "chrome/common/notification_registrar.h" |
| 14 #include "content/browser/tab_contents/constrained_window.h" |
| 15 #include "views/controls/tree/tree_view.h" | 15 #include "views/controls/tree/tree_view.h" |
| 16 #include "views/window/dialog_delegate.h" | 16 #include "views/window/dialog_delegate.h" |
| 17 | 17 |
| 18 class ConstrainedWindow; | 18 class ConstrainedWindow; |
| 19 class CookiesTreeModel; | 19 class CookiesTreeModel; |
| 20 class InfobarView; | 20 class InfobarView; |
| 21 class TabContents; | 21 class TabContents; |
| 22 namespace views { | 22 namespace views { |
| 23 class Label; | 23 class Label; |
| 24 class NativeButton; | 24 class NativeButton; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 87 |
| 88 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; | 88 scoped_ptr<CookiesTreeModel> allowed_cookies_tree_model_; |
| 89 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; | 89 scoped_ptr<CookiesTreeModel> blocked_cookies_tree_model_; |
| 90 | 90 |
| 91 InfobarView* infobar_; | 91 InfobarView* infobar_; |
| 92 | 92 |
| 93 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesWin); | 93 DISALLOW_COPY_AND_ASSIGN(CollectedCookiesWin); |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ | 96 #endif // CHROME_BROWSER_UI_VIEWS_COLLECTED_COOKIES_WIN_H_ |
| OLD | NEW |