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 #include "chrome/browser/ui/views/database_info_view.h" | 5 #include "chrome/browser/ui/views/database_info_view.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/i18n/time_formatting.h" | 9 #include "base/i18n/time_formatting.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
11 #include "grit/generated_resources.h" | 11 #include "grit/generated_resources.h" |
12 #include "ui/base/l10n/l10n_util.h" | 12 #include "ui/base/l10n/l10n_util.h" |
13 #include "ui/base/text/bytes_formatting.h" | 13 #include "ui/base/text/bytes_formatting.h" |
14 #include "ui/gfx/color_utils.h" | 14 #include "ui/gfx/color_utils.h" |
| 15 #include "ui/views/layout/grid_layout.h" |
| 16 #include "ui/views/layout/layout_constants.h" |
15 #include "views/controls/label.h" | 17 #include "views/controls/label.h" |
16 #include "views/controls/textfield/textfield.h" | 18 #include "views/controls/textfield/textfield.h" |
17 #include "views/layout/grid_layout.h" | |
18 #include "views/layout/layout_constants.h" | |
19 | 19 |
20 static const int kDatabaseInfoViewBorderSize = 1; | 20 static const int kDatabaseInfoViewBorderSize = 1; |
21 static const int kDatabaseInfoViewInsetSize = 3; | 21 static const int kDatabaseInfoViewInsetSize = 3; |
22 | 22 |
23 /////////////////////////////////////////////////////////////////////////////// | 23 /////////////////////////////////////////////////////////////////////////////// |
24 // DatabaseInfoView, public: | 24 // DatabaseInfoView, public: |
25 | 25 |
26 DatabaseInfoView::DatabaseInfoView() | 26 DatabaseInfoView::DatabaseInfoView() |
27 : name_value_field_(NULL), | 27 : name_value_field_(NULL), |
28 description_value_field_(NULL), | 28 description_value_field_(NULL), |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 description_value_field_->SetReadOnly(true); | 135 description_value_field_->SetReadOnly(true); |
136 description_value_field_->RemoveBorder(); | 136 description_value_field_->RemoveBorder(); |
137 description_value_field_->SetBackgroundColor(text_area_background); | 137 description_value_field_->SetBackgroundColor(text_area_background); |
138 size_value_field_->SetReadOnly(true); | 138 size_value_field_->SetReadOnly(true); |
139 size_value_field_->RemoveBorder(); | 139 size_value_field_->RemoveBorder(); |
140 size_value_field_->SetBackgroundColor(text_area_background); | 140 size_value_field_->SetBackgroundColor(text_area_background); |
141 last_modified_value_field_->SetReadOnly(true); | 141 last_modified_value_field_->SetReadOnly(true); |
142 last_modified_value_field_->RemoveBorder(); | 142 last_modified_value_field_->RemoveBorder(); |
143 last_modified_value_field_->SetBackgroundColor(text_area_background); | 143 last_modified_value_field_->SetBackgroundColor(text_area_background); |
144 } | 144 } |
OLD | NEW |