| Index: third_party/WebKit/Source/wtf/text/CString.h
 | 
| diff --git a/third_party/WebKit/Source/wtf/text/CString.h b/third_party/WebKit/Source/wtf/text/CString.h
 | 
| index c48f2617ef354f9afcb4f45d000c4450fad221f8..785886c32b7ef35e931da00d88065c1c79aa8f55 100644
 | 
| --- a/third_party/WebKit/Source/wtf/text/CString.h
 | 
| +++ b/third_party/WebKit/Source/wtf/text/CString.h
 | 
| @@ -91,6 +91,9 @@ WTF_EXPORT bool operator==(const CString& a, const CString& b);
 | 
|  inline bool operator!=(const CString& a, const CString& b) { return !(a == b); }
 | 
|  WTF_EXPORT bool operator==(const CString& a, const char* b);
 | 
|  inline bool operator!=(const CString& a, const char* b) { return !(a == b); }
 | 
| +// Pretty printer for gtest and base/logging.*.  It prepends and appends
 | 
| +// double-quotes, and escapes characters other than ASCII printables.
 | 
| +WTF_EXPORT std::ostream& operator<<(std::ostream&, const CString&);
 | 
|  
 | 
|  } // namespace WTF
 | 
|  
 | 
| 
 |