Index: third_party/WebKit/Source/web/tests/sim/SimCompositor.h |
diff --git a/third_party/WebKit/Source/web/tests/sim/SimCompositor.h b/third_party/WebKit/Source/web/tests/sim/SimCompositor.h |
index 527e8a2d5809f9d22f194332e8b8fa1002c299d8..65e9074a5f3da4824938136c211426a668135611 100644 |
--- a/third_party/WebKit/Source/web/tests/sim/SimCompositor.h |
+++ b/third_party/WebKit/Source/web/tests/sim/SimCompositor.h |
@@ -10,7 +10,7 @@ |
namespace blink { |
class SimDisplayItemList; |
-class WebViewImpl; |
+class WebViewBase; |
// Simulated very basic compositor that's capable of running the BeginMainFrame |
// processing steps on WebView: beginFrame, layout, paint. |
@@ -26,7 +26,7 @@ class SimCompositor final : public WebLayerTreeView { |
explicit SimCompositor(); |
~SimCompositor(); |
- void SetWebViewImpl(WebViewImpl&); |
+ void SetWebView(WebViewBase&); |
// Execute the BeginMainFrame processing steps, an approximation of what |
// cc::ThreadProxy::BeginMainFrame would do. |
@@ -47,7 +47,7 @@ class SimCompositor final : public WebLayerTreeView { |
bool needs_begin_frame_; |
bool defer_commits_; |
bool has_selection_; |
- WebViewImpl* web_view_impl_; |
+ WebViewBase* web_view_; |
double last_frame_time_monotonic_; |
}; |