diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 21:52:09 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 21:52:09 +0000 |
commit | 1cc807ccf36818aa70b95fef0f5f72d8fb208a31 (patch) | |
tree | cb86a0e2438b239952e64b7516d2405f26fe1774 /crypto | |
parent | 9540eb3278f2187cdddf53e18a3ced278dd228a1 (diff) | |
download | chromium_src-1cc807ccf36818aa70b95fef0f5f72d8fb208a31.zip chromium_src-1cc807ccf36818aa70b95fef0f5f72d8fb208a31.tar.gz chromium_src-1cc807ccf36818aa70b95fef0f5f72d8fb208a31.tar.bz2 |
Declare password_data_count_ as int to match the return type of its
getter method.
R=rsleevi@chromium.org
BUG=none
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10800038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147541 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/mock_keychain_mac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/mock_keychain_mac.h b/crypto/mock_keychain_mac.h index 6ed3fb5..a831317 100644 --- a/crypto/mock_keychain_mac.h +++ b/crypto/mock_keychain_mac.h @@ -214,7 +214,7 @@ class CRYPTO_EXPORT MockKeychain : public MacKeychain { // Tracks the allocations and frees of password data in |FindGenericPassword| // and |ItemFreeContent|. - mutable unsigned int password_data_count_; + mutable int password_data_count_; // Records the password being set when |AddGenericPassword()| gets called. mutable std::string add_generic_password_; |