| Index: content/renderer/media/buffered_resource_loader_unittest.cc
|
| diff --git a/content/renderer/media/buffered_resource_loader_unittest.cc b/content/renderer/media/buffered_resource_loader_unittest.cc
|
| index 94022f64a784b54ce9d780c51e848a19e4b8325d..7bd23de9e25e2625cf763c51c5cc96fa73a8e20d 100644
|
| --- a/content/renderer/media/buffered_resource_loader_unittest.cc
|
| +++ b/content/renderer/media/buffered_resource_loader_unittest.cc
|
| @@ -21,7 +21,7 @@
|
| #include "third_party/WebKit/public/platform/WebURLError.h"
|
| #include "third_party/WebKit/public/platform/WebURLRequest.h"
|
| #include "third_party/WebKit/public/platform/WebURLResponse.h"
|
| -#include "third_party/WebKit/public/web/WebFrame.h"
|
| +#include "third_party/WebKit/public/web/WebLocalFrame.h"
|
| #include "third_party/WebKit/public/web/WebView.h"
|
|
|
| using ::testing::_;
|
| @@ -30,7 +30,7 @@ using ::testing::Return;
|
| using ::testing::Truly;
|
| using ::testing::NiceMock;
|
|
|
| -using blink::WebFrame;
|
| +using blink::WebLocalFrame;
|
| using blink::WebString;
|
| using blink::WebURLError;
|
| using blink::WebURLResponse;
|
| @@ -64,7 +64,7 @@ static bool CorrectAcceptEncoding(const blink::WebURLRequest &request) {
|
| class BufferedResourceLoaderTest : public testing::Test {
|
| public:
|
| BufferedResourceLoaderTest()
|
| - : view_(WebView::create(NULL)), frame_(WebFrame::create(&client_)) {
|
| + : view_(WebView::create(NULL)), frame_(WebLocalFrame::create(&client_)) {
|
| view_->setMainFrame(frame_);
|
|
|
| for (int i = 0; i < kDataSize; ++i) {
|
| @@ -297,7 +297,7 @@ class BufferedResourceLoaderTest : public testing::Test {
|
|
|
| MockWebFrameClient client_;
|
| WebView* view_;
|
| - WebFrame* frame_;
|
| + WebLocalFrame* frame_;
|
|
|
| base::MessageLoop message_loop_;
|
|
|
|
|