| OLD | NEW |
| 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_AUTOFILL_CORE_COMMON_SAVE_PASSWORD_PROGRESS_LOGGER_H_ | 5 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_SAVE_PASSWORD_PROGRESS_LOGGER_H_ |
| 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_SAVE_PASSWORD_PROGRESS_LOGGER_H_ | 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_SAVE_PASSWORD_PROGRESS_LOGGER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 STRING_SCHEME_HTML, | 42 STRING_SCHEME_HTML, |
| 43 STRING_SCHEME_BASIC, | 43 STRING_SCHEME_BASIC, |
| 44 STRING_SCHEME_DIGEST, | 44 STRING_SCHEME_DIGEST, |
| 45 STRING_SCHEME_MESSAGE, | 45 STRING_SCHEME_MESSAGE, |
| 46 STRING_SIGNON_REALM, | 46 STRING_SIGNON_REALM, |
| 47 STRING_ORIGINAL_SIGNON_REALM, | 47 STRING_ORIGINAL_SIGNON_REALM, |
| 48 STRING_ORIGIN, | 48 STRING_ORIGIN, |
| 49 STRING_ACTION, | 49 STRING_ACTION, |
| 50 STRING_USERNAME_ELEMENT, | 50 STRING_USERNAME_ELEMENT, |
| 51 STRING_PASSWORD_ELEMENT, | 51 STRING_PASSWORD_ELEMENT, |
| 52 STRING_PASSWORD_AUTOCOMPLETE_SET, | |
| 53 STRING_NEW_PASSWORD_ELEMENT, | 52 STRING_NEW_PASSWORD_ELEMENT, |
| 54 STRING_SSL_VALID, | 53 STRING_SSL_VALID, |
| 55 STRING_PASSWORD_GENERATED, | 54 STRING_PASSWORD_GENERATED, |
| 56 STRING_TIMES_USED, | 55 STRING_TIMES_USED, |
| 57 STRING_PSL_MATCH, | 56 STRING_PSL_MATCH, |
| 58 STRING_NAME_OR_ID, | 57 STRING_NAME_OR_ID, |
| 59 STRING_MESSAGE, | 58 STRING_MESSAGE, |
| 60 STRING_SET_AUTH_METHOD, | 59 STRING_SET_AUTH_METHOD, |
| 61 STRING_AUTHENTICATION_HANDLED, | 60 STRING_AUTHENTICATION_HANDLED, |
| 62 STRING_LOGINHANDLER_FORM, | 61 STRING_LOGINHANDLER_FORM, |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 // Translates the StringID values into the corresponding strings. | 161 // Translates the StringID values into the corresponding strings. |
| 163 static std::string GetStringFromID(SavePasswordProgressLogger::StringID id); | 162 static std::string GetStringFromID(SavePasswordProgressLogger::StringID id); |
| 164 | 163 |
| 165 private: | 164 private: |
| 166 DISALLOW_COPY_AND_ASSIGN(SavePasswordProgressLogger); | 165 DISALLOW_COPY_AND_ASSIGN(SavePasswordProgressLogger); |
| 167 }; | 166 }; |
| 168 | 167 |
| 169 } // namespace autofill | 168 } // namespace autofill |
| 170 | 169 |
| 171 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_SAVE_PASSWORD_PROGRESS_LOGGER_H_ | 170 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_SAVE_PASSWORD_PROGRESS_LOGGER_H_ |
| OLD | NEW |