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

Unified Diff: Source/core/storage/StorageEvent.h

Issue 352643005: Drop [TypeChecking=Nullable]; deduce from attribute type instead (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cleanup-typechecking
Patch Set: rebased Created 6 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 | « Source/core/html/MediaKeyEvent.h ('k') | Source/core/svg/SVGElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/storage/StorageEvent.h
diff --git a/Source/core/storage/StorageEvent.h b/Source/core/storage/StorageEvent.h
index 6d57b76b5410337f8bef6c232bfadba8720117c1..14fb3040d2c79e81cf4551e10497782cccbc4bcf 100644
--- a/Source/core/storage/StorageEvent.h
+++ b/Source/core/storage/StorageEvent.h
@@ -56,7 +56,6 @@ public:
const String& newValue() const { return m_newValue; }
const String& url() const { return m_url; }
Storage* storageArea() const { return m_storageArea.get(); }
- Storage* storageArea(bool& isNull) const { isNull = !m_storageArea; return m_storageArea.get(); }
void initStorageEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& key, const String& oldValue, const String& newValue, const String& url, Storage* storageArea);
« no previous file with comments | « Source/core/html/MediaKeyEvent.h ('k') | Source/core/svg/SVGElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698