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 #ifndef CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ |
6 #define CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 protected: | 39 protected: |
40 // views::View overrides: | 40 // views::View overrides: |
41 virtual void ViewHierarchyChanged( | 41 virtual void ViewHierarchyChanged( |
42 bool is_add, views::View* parent, views::View* child); | 42 bool is_add, views::View* parent, views::View* child); |
43 | 43 |
44 private: | 44 private: |
45 // Set up the view layout. | 45 // Set up the view layout. |
46 void Init(); | 46 void Init(); |
47 | 47 |
48 // Individual property labels. | 48 // Individual property labels. |
| 49 views::Textfield* name_value_field_; |
49 views::Textfield* description_value_field_; | 50 views::Textfield* description_value_field_; |
50 views::Textfield* size_value_field_; | 51 views::Textfield* size_value_field_; |
51 views::Textfield* last_modified_value_field_; | 52 views::Textfield* last_modified_value_field_; |
52 | 53 |
53 DISALLOW_COPY_AND_ASSIGN(DatabaseInfoView); | 54 DISALLOW_COPY_AND_ASSIGN(DatabaseInfoView); |
54 }; | 55 }; |
55 | 56 |
56 | 57 |
57 #endif // CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ | 58 #endif // CHROME_BROWSER_VIEWS_DATABASE_INFO_VIEW_H_ |
OLD | NEW |