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

Unified Diff: third_party/WebKit/Source/modules/storage/StorageArea.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/StorageArea.cpp
diff --git a/third_party/WebKit/Source/modules/storage/StorageArea.cpp b/third_party/WebKit/Source/modules/storage/StorageArea.cpp
index 802b47a4f007d64b4f1879e4ca2f6f7c6f6d1456..9e3bb5510e9cae02f8131f352087f1d3017b958e 100644
--- a/third_party/WebKit/Source/modules/storage/StorageArea.cpp
+++ b/third_party/WebKit/Source/modules/storage/StorageArea.cpp
@@ -169,7 +169,8 @@ void StorageArea::dispatchLocalStorageEvent(
for (Page* page : Page::ordinaryPages()) {
for (Frame* frame = page->mainFrame(); frame;
frame = frame->tree().traverseNext()) {
- // FIXME: We do not yet have a way to dispatch events to out-of-process frames.
+ // FIXME: We do not yet have a way to dispatch events to out-of-process
+ // frames.
if (!frame->isLocalFrame())
continue;
LocalFrame* localFrame = toLocalFrame(frame);
@@ -219,7 +220,8 @@ void StorageArea::dispatchSessionStorageEvent(
for (Frame* frame = page->mainFrame(); frame;
frame = frame->tree().traverseNext()) {
- // FIXME: We do not yet have a way to dispatch events to out-of-process frames.
+ // FIXME: We do not yet have a way to dispatch events to out-of-process
+ // frames.
if (!frame->isLocalFrame())
continue;
LocalFrame* localFrame = toLocalFrame(frame);

Powered by Google App Engine
This is Rietveld 408576698