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

Unified Diff: content/browser/dom_storage/dom_storage_message_filter.cc

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
Index: content/browser/dom_storage/dom_storage_message_filter.cc
diff --git a/content/browser/dom_storage/dom_storage_message_filter.cc b/content/browser/dom_storage/dom_storage_message_filter.cc
index 0a67dd06efff05ca57b2c666e55eb918e69c1e24..537300e06f61a3bee5e150b5d0d4f747e8f39060 100644
--- a/content/browser/dom_storage/dom_storage_message_filter.cc
+++ b/content/browser/dom_storage/dom_storage_message_filter.cc
@@ -173,7 +173,7 @@ void DOMStorageMessageFilter::OnDomStorageItemRemoved(
const GURL& page_url) {
SendDomStorageEvent(area, page_url,
base::NullableString16(key, false),
- base::NullableString16(true),
+ base::NullableString16(),
base::NullableString16(old_value, false));
}
@@ -181,9 +181,9 @@ void DOMStorageMessageFilter::OnDomStorageAreaCleared(
const dom_storage::DomStorageArea* area,
const GURL& page_url) {
SendDomStorageEvent(area, page_url,
- base::NullableString16(true),
- base::NullableString16(true),
- base::NullableString16(true));
+ base::NullableString16(),
+ base::NullableString16(),
+ base::NullableString16());
}
void DOMStorageMessageFilter::SendDomStorageEvent(

Powered by Google App Engine
This is Rietveld 408576698