| Index: third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| diff --git a/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp b/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| index 5feaf718bf9456c0dbd40d61c8c839f0a1ab3a38..e9deb8ae286b79d0c7ce49dc13e84e30f150b072 100644
|
| --- a/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| +++ b/third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp
|
| @@ -43,10 +43,10 @@ void DOMWindowStorageController::didAddEventListener(
|
| LocalDOMWindow* window,
|
| const AtomicString& eventType) {
|
| if (eventType == EventTypeNames::storage) {
|
| - // Creating these blink::Storage objects informs the system that we'd like to receive
|
| - // notifications about storage events that might be triggered in other processes. Rather
|
| - // than subscribe to these notifications explicitly, we subscribe to them implicitly to
|
| - // simplify the work done by the system.
|
| + // Creating these blink::Storage objects informs the system that we'd like
|
| + // to receive notifications about storage events that might be triggered in
|
| + // other processes. Rather than subscribe to these notifications explicitly,
|
| + // we subscribe to them implicitly to simplify the work done by the system.
|
| DOMWindowStorage::from(*window).localStorage(IGNORE_EXCEPTION);
|
| DOMWindowStorage::from(*window).sessionStorage(IGNORE_EXCEPTION);
|
| }
|
|
|