| Index: third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| index c08c5dea4a5a2d7bf32a6ce1c02ed09b318931e0..11b3d8243b96bb1de91b54f3dfba86d7395968cd 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
|
| @@ -79,7 +79,6 @@
|
| #include "platform/text/TextStream.h"
|
| #include "public/platform/WebFrameScheduler.h"
|
| #include "public/platform/WebScreenInfo.h"
|
| -#include "public/platform/WebSecurityOrigin.h"
|
| #include "public/platform/WebViewScheduler.h"
|
| #include "third_party/skia/include/core/SkImage.h"
|
| #include "wtf/PassOwnPtr.h"
|
| @@ -843,7 +842,7 @@ inline LocalFrame::LocalFrame(FrameLoaderClient* client, FrameHost* host, FrameO
|
| WebFrameScheduler* LocalFrame::frameScheduler()
|
| {
|
| if (!m_frameScheduler.get())
|
| - m_frameScheduler = page()->chromeClient().createFrameScheduler();
|
| + m_frameScheduler = page()->chromeClient().createFrameScheduler(client()->frameBlameContext());
|
|
|
| ASSERT(m_frameScheduler.get());
|
| return m_frameScheduler.get();
|
| @@ -859,7 +858,6 @@ void LocalFrame::scheduleVisualUpdateUnlessThrottled()
|
| void LocalFrame::updateSecurityOrigin(SecurityOrigin* origin)
|
| {
|
| script().updateSecurityOrigin(origin);
|
| - frameScheduler()->setFrameOrigin(WebSecurityOrigin(origin));
|
| }
|
|
|
| DEFINE_WEAK_IDENTIFIER_MAP(LocalFrame);
|
|
|