| 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 a68c4846066932628615678c7283f4186e14c1fb..6fd374f3e5da246be69e2129f1c88008af58058c 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);
|
|
|