| 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_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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" |
| 13 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "ui/views/view.h" | 14 #include "ui/views/view.h" |
| 15 | 15 |
| 16 namespace views { | 16 namespace views { |
| 17 class GridLayout; | 17 class GridLayout; |
| 18 class Label; | 18 class Label; |
| 19 class Textfield; | 19 class Textfield; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace net { | 22 namespace net { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 views::Textfield* send_for_value_field_; | 74 views::Textfield* send_for_value_field_; |
| 75 views::Label* created_label_; | 75 views::Label* created_label_; |
| 76 views::Textfield* created_value_field_; | 76 views::Textfield* created_value_field_; |
| 77 views::Label* expires_label_; | 77 views::Label* expires_label_; |
| 78 views::Textfield* expires_value_field_; | 78 views::Textfield* expires_value_field_; |
| 79 | 79 |
| 80 DISALLOW_COPY_AND_ASSIGN(CookieInfoView); | 80 DISALLOW_COPY_AND_ASSIGN(CookieInfoView); |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 #endif // CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ | 83 #endif // CHROME_BROWSER_UI_VIEWS_COOKIE_INFO_VIEW_H_ |
| OLD | NEW |