Chromium Code Reviews| Index: third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
| diff --git a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
| index e320cddb7837dc044f483970dc2a1f81f1f0f9ee..26cfec4be4c7655e34bf50e9c1f34e127db32fbe 100644 |
| --- a/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
| +++ b/third_party/WebKit/Source/core/loader/FrameLoaderClient.h |
| @@ -124,7 +124,8 @@ public: |
| // Another page has accessed the initial empty document of this frame. |
| // It is no longer safe to display a provisional URL, since a URL spoof |
| - // is now possible. |
| + // is now possible. The client must not call back into JavaScript during |
| + // this notification. |
|
dcheng
2016/07/22 06:22:03
It makes me sad that this comment is necessary, si
Charlie Reis
2016/07/22 16:41:44
Yeah, I added it before we had the ScriptForbidden
|
| virtual void didAccessInitialDocument() { } |
|
dglazkov
2016/07/22 14:32:10
The only user of this is RenderFrameImpl::didAcces
Charlie Reis
2016/07/22 16:41:43
That's right. That's the only use, and there's no
|
| // This frame has displayed inactive content (such as an image) from an |