| Index: net/base/origin_bound_cert_store.cc
 | 
| diff --git a/net/base/origin_bound_cert_store.cc b/net/base/origin_bound_cert_store.cc
 | 
| index af2acce658e15ea6dbaa4b0f0fbdc298bd3af6db..5a09e272a39910bd32f5f2c4b3d48f6d9ad6a603 100644
 | 
| --- a/net/base/origin_bound_cert_store.cc
 | 
| +++ b/net/base/origin_bound_cert_store.cc
 | 
| @@ -11,13 +11,13 @@ OriginBoundCertStore::OriginBoundCert::OriginBoundCert()
 | 
|  }
 | 
|  
 | 
|  OriginBoundCertStore::OriginBoundCert::OriginBoundCert(
 | 
| -    const std::string& origin,
 | 
| +    const std::string& domain,
 | 
|      SSLClientCertType type,
 | 
|      base::Time creation_time,
 | 
|      base::Time expiration_time,
 | 
|      const std::string& private_key,
 | 
|      const std::string& cert)
 | 
| -    : origin_(origin),
 | 
| +    : domain_(domain),
 | 
|        type_(type),
 | 
|        creation_time_(creation_time),
 | 
|        expiration_time_(expiration_time),
 | 
| 
 |