diff options
Diffstat (limited to 'chrome/browser/autofill/password_generator.h')
-rw-r--r-- | chrome/browser/autofill/password_generator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/autofill/password_generator.h b/chrome/browser/autofill/password_generator.h index dd33160..283fdf5 100644 --- a/chrome/browser/autofill/password_generator.h +++ b/chrome/browser/autofill/password_generator.h @@ -26,9 +26,10 @@ class PasswordGenerator { // (1) Each character is guaranteed to be a non-whitespace printable ASCII // character. // (2) The generated password will contain AT LEAST one upper case letter, one - // lower case letter, one digit, and one other symbol. + // lower case letter, one digit, and EXACTLY one other symbol. // (3) The password length will be equal to |password_length_| (see comment // for the constructor). + // Not thread safe. std::string Generate() const; private: |