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

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

Issue 2808823002: MacViews: Allows the toolkit-views Manage Passwords Dialog to be used (Closed)
Patch Set: MacViews: Allows the toolkit-views Manage Passwords Dialog to be used Created 3 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_selection_view.h" 5 #include "chrome/browser/ui/views/passwords/credentials_selection_view_views.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" 9 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
10 #include "components/password_manager/core/browser/password_manager_metrics_util .h" 10 #include "components/password_manager/core/browser/password_manager_metrics_util .h"
11 #include "ui/base/models/simple_combobox_model.h" 11 #include "ui/base/models/simple_combobox_model.h"
12 #include "ui/base/resource/resource_bundle.h" 12 #include "ui/base/resource/resource_bundle.h"
13 #include "ui/views/controls/button/button.h" 13 #include "ui/views/controls/button/button.h"
14 #include "ui/views/controls/combobox/combobox.h" 14 #include "ui/views/controls/combobox/combobox.h"
15 #include "ui/views/controls/label.h" 15 #include "ui/views/controls/label.h"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 DEFAULT_ACCOUNT_PREFERRED_USER_CHANGED; 146 DEFAULT_ACCOUNT_PREFERRED_USER_CHANGED;
147 } else { 147 } else {
148 action = 148 action =
149 password_manager::metrics_util::DEFAULT_ACCOUNT_FIRST_USER_CHANGED; 149 password_manager::metrics_util::DEFAULT_ACCOUNT_FIRST_USER_CHANGED;
150 } 150 }
151 } 151 }
152 152
153 password_manager::metrics_util::LogMultiAccountUpdateBubbleUserAction(action); 153 password_manager::metrics_util::LogMultiAccountUpdateBubbleUserAction(action);
154 action_reported_ = true; 154 action_reported_ = true;
155 } 155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698