Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Side by Side Diff: chrome/browser/ui/views/passwords/credentials_item_view.cc

Issue 1545153002: Switch to standard integer types in chrome/browser/ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/panels/x11_panel_resizer.h ('k') | chrome/browser/ui/views/passwords/credentials_selection_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698