| Index: third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
|
| diff --git a/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h b/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
|
| index 8b6e44ebb77fc1f60c8a875743f2caf278190dee..92e1cfab6fe90f768bf25dab7b9ddde9e4482d1d 100644
|
| --- a/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
|
| +++ b/third_party/WebKit/Source/modules/storage/DOMWindowStorage.h
|
| @@ -26,8 +26,8 @@ public:
|
|
|
| Storage* sessionStorage(ExceptionState&) const;
|
| Storage* localStorage(ExceptionState&) const;
|
| - Storage* optionalSessionStorage() const;
|
| - Storage* optionalLocalStorage() const;
|
| + Storage* optionalSessionStorage() const { return m_sessionStorage.get(); }
|
| + Storage* optionalLocalStorage() const { return m_localStorage.get(); }
|
|
|
| DECLARE_TRACE();
|
|
|
|
|