| Index: chrome/common/net/x509_certificate_model.cc
 | 
| diff --git a/chrome/common/net/x509_certificate_model.cc b/chrome/common/net/x509_certificate_model.cc
 | 
| index a7bb46c486262d3c41778e01ab1a3c86938fb0ba..ee502a1d0199a6ee2861eb3cd10b3afcdf4bb660 100644
 | 
| --- a/chrome/common/net/x509_certificate_model.cc
 | 
| +++ b/chrome/common/net/x509_certificate_model.cc
 | 
| @@ -65,11 +65,11 @@ std::string ProcessRawBytes(const unsigned char* data, size_t data_length) {
 | 
|    return ProcessRawBytesWithSeparators(data, data_length, ' ', '\n');
 | 
|  }
 | 
|  
 | 
| -#if defined(USE_NSS)
 | 
| +#if defined(USE_NSS_CERTS)
 | 
|  std::string ProcessRawBits(const unsigned char* data, size_t data_length) {
 | 
|    return ProcessRawBytes(data, (data_length + 7) / 8);
 | 
|  }
 | 
| -#endif  // USE_NSS
 | 
| +#endif  // USE_NSS_CERTS
 | 
|  
 | 
|  }  // namespace x509_certificate_model
 | 
|  
 | 
| 
 |