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

Side by Side Diff: components/password_manager/core/common/password_manager_ui.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_
6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_
7 7
8 #include "base/basictypes.h"
9 8
10 namespace password_manager { 9 namespace password_manager {
11 10
12 namespace ui { 11 namespace ui {
13 12
14 // The current state of the password manager's UI. 13 // The current state of the password manager's UI.
15 enum State { 14 enum State {
16 // The password manager has nothing to do with the current site. 15 // The password manager has nothing to do with the current site.
17 INACTIVE_STATE, 16 INACTIVE_STATE,
18 17
(...skipping 18 matching lines...) Expand all
37 // The user submitted a form that we consider to be a change password form. 36 // The user submitted a form that we consider to be a change password form.
38 // Chrome needs to ask the user to confirm password updating. 37 // Chrome needs to ask the user to confirm password updating.
39 PENDING_PASSWORD_UPDATE_STATE, 38 PENDING_PASSWORD_UPDATE_STATE,
40 }; 39 };
41 40
42 } // namespace ui 41 } // namespace ui
43 42
44 } // namespace password_manager 43 } // namespace password_manager
45 44
46 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_ 45 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_COMMON_PASSWORD_MANAGER_UI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698