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

Side by Side Diff: chrome/browser/ui/views/passwords/manage_password_items_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/manage_password_items_view.h" 5 #include "chrome/browser/ui/views/passwords/manage_password_items_view.h"
6 6
7 #include <numeric> 7 #include <numeric>
8 8
9 #include "base/macros.h"
9 #include "base/strings/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" 11 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
11 #include "chrome/grit/generated_resources.h" 12 #include "chrome/grit/generated_resources.h"
12 #include "grit/components_strings.h" 13 #include "grit/components_strings.h"
13 #include "ui/base/l10n/l10n_util.h" 14 #include "ui/base/l10n/l10n_util.h"
14 #include "ui/base/resource/resource_bundle.h" 15 #include "ui/base/resource/resource_bundle.h"
15 #include "ui/resources/grit/ui_resources.h" 16 #include "ui/resources/grit/ui_resources.h"
16 #include "ui/views/controls/button/button.h" 17 #include "ui/views/controls/button/button.h"
17 #include "ui/views/controls/button/image_button.h" 18 #include "ui/views/controls/button/image_button.h"
18 #include "ui/views/controls/label.h" 19 #include "ui/views/controls/label.h"
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 deleted 295 deleted
295 ? ManagePasswordsBubbleModel::REMOVE_PASSWORD 296 ? ManagePasswordsBubbleModel::REMOVE_PASSWORD
296 : ManagePasswordsBubbleModel::ADD_PASSWORD); 297 : ManagePasswordsBubbleModel::ADD_PASSWORD);
297 } 298 }
298 299
299 void ManagePasswordItemsView::Refresh() { 300 void ManagePasswordItemsView::Refresh() {
300 DCHECK_NE(password_manager::ui::PENDING_PASSWORD_STATE, model_->state()); 301 DCHECK_NE(password_manager::ui::PENDING_PASSWORD_STATE, model_->state());
301 RemoveAllChildViews(true); 302 RemoveAllChildViews(true);
302 AddRows(); 303 AddRows();
303 } 304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698