Index: content/renderer/stats_collection_controller.cc |
diff --git a/content/renderer/stats_collection_controller.cc b/content/renderer/stats_collection_controller.cc |
index cbbdc403698fa00551cd1950729636ef52681e81..2a96a532805193f78f56f76b4d2e726cb51b1384 100644 |
--- a/content/renderer/stats_collection_controller.cc |
+++ b/content/renderer/stats_collection_controller.cc |
@@ -12,8 +12,8 @@ |
#include "content/renderer/render_view_impl.h" |
#include "gin/handle.h" |
#include "gin/object_template_builder.h" |
-#include "third_party/WebKit/public/web/WebFrame.h" |
#include "third_party/WebKit/public/web/WebKit.h" |
+#include "third_party/WebKit/public/web/WebLocalFrame.h" |
#include "third_party/WebKit/public/web/WebView.h" |
namespace content { |
@@ -21,7 +21,8 @@ namespace content { |
namespace { |
bool CurrentRenderViewImpl(RenderViewImpl** out) { |
- blink::WebFrame* web_frame = blink::WebFrame::frameForCurrentContext(); |
+ blink::WebLocalFrame* web_frame = |
+ blink::WebLocalFrame::frameForCurrentContext(); |
if (!web_frame) |
return false; |