Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1076)

Unified Diff: base/strings/nullable_string16.h

Issue 17327004: Replace base::NullableString16(bool) usage with default constructor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/dom_storage/dom_storage_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
}
« no previous file with comments | « no previous file | content/browser/dom_storage/dom_storage_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698