| Index: net/filter/stream_source.cc | 
| diff --git a/net/cert/ocsp_revocation_status.h b/net/filter/stream_source.cc | 
| similarity index 50% | 
| copy from net/cert/ocsp_revocation_status.h | 
| copy to net/filter/stream_source.cc | 
| index 945104f26f613a9e38d7c6b59c2952873960b673..5b3092407897a5c4d254b7cc67fd323de1c18b10 100644 | 
| --- a/net/cert/ocsp_revocation_status.h | 
| +++ b/net/filter/stream_source.cc | 
| @@ -2,17 +2,16 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| -#ifndef NET_CERT_OCSP_REVOCATION_STATUS_H | 
| -#define NET_CERT_OCSP_REVOCATION_STATUS_H | 
| +#include "net/filter/stream_source.h" | 
|  | 
| namespace net { | 
|  | 
| -enum class OCSPRevocationStatus { | 
| -  GOOD, | 
| -  REVOKED, | 
| -  UNKNOWN, | 
| -}; | 
| +StreamSource::StreamSource(SourceType type) : type_(type) {} | 
|  | 
| -}  // namespace net | 
| +StreamSource::~StreamSource() {} | 
| + | 
| +std::string StreamSource::OrderedTypeStringList() const { | 
| +  return ""; | 
| +} | 
|  | 
| -#endif  // NET_CERT_OCSP_REVOCATION_STATUS_H | 
| +}  // namespace net | 
|  |