| 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);
|
|
|