| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/passwords/credentials_item_view.h" | 5 #include "chrome/browser/ui/views/passwords/credentials_item_view.h" |
| 6 | 6 |
| 7 #include "base/macros.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/ui/passwords/manage_passwords_view_utils.h" | 9 #include "chrome/browser/ui/passwords/manage_passwords_view_utils.h" |
| 9 #include "chrome/grit/generated_resources.h" | 10 #include "chrome/grit/generated_resources.h" |
| 10 #include "components/autofill/core/common/password_form.h" | 11 #include "components/autofill/core/common/password_form.h" |
| 11 #include "grit/theme_resources.h" | 12 #include "grit/theme_resources.h" |
| 12 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 13 #include "ui/base/resource/resource_bundle.h" | 14 #include "ui/base/resource/resource_bundle.h" |
| 14 #include "ui/gfx/canvas.h" | 15 #include "ui/gfx/canvas.h" |
| 15 #include "ui/gfx/image/image.h" | 16 #include "ui/gfx/image/image.h" |
| 16 #include "ui/gfx/path.h" | 17 #include "ui/gfx/path.h" |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 (upper_size.height() + lower_size.height())) / 2; | 154 (upper_size.height() + lower_size.height())) / 2; |
| 154 gfx::Point label_origin(image_origin.x() + image_size.width() + kSpacing, | 155 gfx::Point label_origin(image_origin.x() + image_size.width() + kSpacing, |
| 155 child_area.origin().y() + y_offset); | 156 child_area.origin().y() + y_offset); |
| 156 if (upper_label_) | 157 if (upper_label_) |
| 157 upper_label_->SetBoundsRect(gfx::Rect(label_origin, upper_size)); | 158 upper_label_->SetBoundsRect(gfx::Rect(label_origin, upper_size)); |
| 158 if (lower_label_) { | 159 if (lower_label_) { |
| 159 label_origin.Offset(0, upper_size.height()); | 160 label_origin.Offset(0, upper_size.height()); |
| 160 lower_label_->SetBoundsRect(gfx::Rect(label_origin, lower_size)); | 161 lower_label_->SetBoundsRect(gfx::Rect(label_origin, lower_size)); |
| 161 } | 162 } |
| 162 } | 163 } |
| OLD | NEW |