 Chromium Code Reviews
 Chromium Code Reviews Issue 17327004:
  Replace base::NullableString16(bool) usage with default constructor.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 17327004:
  Replace base::NullableString16(bool) usage with default constructor.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| Index: base/strings/nullable_string16.h | 
| diff --git a/base/strings/nullable_string16.h b/base/strings/nullable_string16.h | 
| index 16dcfe23d38093195c91f9e5b549ebf23079d1e1..e35e3d1c9431d9b6bd374f91550960deda61803b 100644 | 
| --- a/base/strings/nullable_string16.h | 
| +++ b/base/strings/nullable_string16.h | 
| @@ -18,7 +18,6 @@ namespace base { | 
| class NullableString16 { | 
| public: | 
| NullableString16() : is_null_(true) { } | 
| - explicit NullableString16(bool is_null) : is_null_(is_null) { } | 
| 
michaeln
2013/06/17 23:48:12
i guess we never construct the oddball non-null em
 | 
| NullableString16(const string16& string, bool is_null) | 
| : string_(string), is_null_(is_null) { | 
| } |