| Index: storage/browser/blob/blob_data_item.h | 
| diff --git a/storage/browser/blob/blob_data_item.h b/storage/browser/blob/blob_data_item.h | 
| index d04a02c8551e6ad111743791d61e1955b198915d..9de0be91539969532f0a0ca2381bb495e0d7fec1 100644 | 
| --- a/storage/browser/blob/blob_data_item.h | 
| +++ b/storage/browser/blob/blob_data_item.h | 
| @@ -82,17 +82,8 @@ class STORAGE_EXPORT BlobDataItem : public base::RefCounted<BlobDataItem> { | 
| int disk_cache_stream_index_;  // For TYPE_DISK_CACHE_ENTRY. | 
| }; | 
|  | 
| -#if defined(UNIT_TEST) | 
| -inline bool operator==(const BlobDataItem& a, const BlobDataItem& b) { | 
| -  return a.disk_cache_entry() == b.disk_cache_entry() && | 
| -         a.disk_cache_stream_index() == b.disk_cache_stream_index() && | 
| -         a.data_element() == b.data_element(); | 
| -} | 
| - | 
| -inline bool operator!=(const BlobDataItem& a, const BlobDataItem& b) { | 
| -  return !(a == b); | 
| -} | 
| -#endif  // defined(UNIT_TEST) | 
| +STORAGE_EXPORT bool operator==(const BlobDataItem& a, const BlobDataItem& b); | 
| +STORAGE_EXPORT bool operator!=(const BlobDataItem& a, const BlobDataItem& b); | 
|  | 
| }  // namespace storage | 
|  | 
|  |