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_COOKIE_INFO_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/string16.h" | 14 #include "base/string16.h" |
15 #include "net/base/cookie_monster.h" | 15 #include "net/base/cookie_monster.h" |
16 #include "ui/base/models/combobox_model.h" | 16 #include "ui/base/models/combobox_model.h" |
17 #include "ui/views/controls/combobox/combobox_listener.h" | 17 #include "ui/views/controls/combobox/combobox_listener.h" |
18 #include "views/view.h" | 18 #include "ui/views/view.h" |
19 | 19 |
20 namespace views { | 20 namespace views { |
21 class GridLayout; | 21 class GridLayout; |
22 class Label; | 22 class Label; |
23 class Textfield; | 23 class Textfield; |
24 } | 24 } |
25 | 25 |
26 | 26 |
27 /////////////////////////////////////////////////////////////////////////////// | 27 /////////////////////////////////////////////////////////////////////////////// |
28 // CookieInfoViewDelegate | 28 // CookieInfoViewDelegate |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 // CookiesPromptView (alert before cookie is set), in all other cases we | 114 // CookiesPromptView (alert before cookie is set), in all other cases we |
115 // don't let user directly change cookie setting. | 115 // don't let user directly change cookie setting. |
116 bool editable_expiration_date_; | 116 bool editable_expiration_date_; |
117 | 117 |
118 CookieInfoViewDelegate* delegate_; | 118 CookieInfoViewDelegate* delegate_; |
119 | 119 |
120 DISALLOW_COPY_AND_ASSIGN(CookieInfoView); | 120 DISALLOW_COPY_AND_ASSIGN(CookieInfoView); |
121 }; | 121 }; |
122 | 122 |
123 #endif // CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ | 123 #endif // CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ |
OLD | NEW |