| Index: crypto/symmetric_key_win.cc
 | 
| diff --git a/crypto/symmetric_key_win.cc b/crypto/symmetric_key_win.cc
 | 
| index ec9cfa04d75a44c9704fd33d35b0cdfcc094dadc..e2dc9b4ae2d9256414eb1a3d632aed3889b96085 100644
 | 
| --- a/crypto/symmetric_key_win.cc
 | 
| +++ b/crypto/symmetric_key_win.cc
 | 
| @@ -38,7 +38,7 @@ ALG_ID GetAESAlgIDForKeySize(size_t key_size_in_bits) {
 | 
|        NOTREACHED();
 | 
|        return 0;
 | 
|    }
 | 
| -};
 | 
| +}
 | 
|  
 | 
|  // Imports a raw/plaintext key of |key_size| stored in |*key_data| into a new
 | 
|  // key created for the specified |provider|. |alg| contains the algorithm of
 | 
| @@ -83,7 +83,7 @@ bool ImportRawKey(HCRYPTPROV provider,
 | 
|        CryptImportKey(provider, actual_key, actual_size, 0, flags, &unsafe_key);
 | 
|  
 | 
|    // Clean up the temporary copy of key, regardless of whether it was imported
 | 
| -  // sucessfully or not.
 | 
| +  // successfully or not.
 | 
|    SecureZeroMemory(actual_key, actual_size);
 | 
|  
 | 
|    if (!ok)
 | 
| 
 |