OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_FORM_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_FORM_MANAGER_H_ |
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_FORM_MANAGER_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_FORM_MANAGER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 #include <vector> | 9 #include <vector> |
11 | 10 |
12 #include "build/build_config.h" | 11 #include "build/build_config.h" |
13 | 12 |
14 #include "base/stl_util.h" | 13 #include "base/stl_util.h" |
15 #include "chrome/browser/password_manager/password_store_consumer.h" | 14 #include "chrome/browser/password_manager/password_store_consumer.h" |
16 #include "webkit/forms/password_form.h" | 15 #include "webkit/forms/password_form.h" |
17 | 16 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 // These three fields record the "ActionsTaken" by the browser and | 248 // These three fields record the "ActionsTaken" by the browser and |
250 // the user with this form, and the result. They are combined and | 249 // the user with this form, and the result. They are combined and |
251 // recorded in UMA when the manager is destroyed. | 250 // recorded in UMA when the manager is destroyed. |
252 ManagerAction manager_action_; | 251 ManagerAction manager_action_; |
253 UserAction user_action_; | 252 UserAction user_action_; |
254 SubmitResult submit_result_; | 253 SubmitResult submit_result_; |
255 | 254 |
256 DISALLOW_COPY_AND_ASSIGN(PasswordFormManager); | 255 DISALLOW_COPY_AND_ASSIGN(PasswordFormManager); |
257 }; | 256 }; |
258 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_FORM_MANAGER_H_ | 257 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_FORM_MANAGER_H_ |
OLD | NEW |