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

Unified Diff: third_party/WebKit/Source/modules/storage/DOMWindowStorageController.cpp

Issue 2396573002: reflow comments in modules/[presentation,storage] (Closed)
Patch Set: Created 4 years, 2 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: 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);
}

Powered by Google App Engine
This is Rietveld 408576698