Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1224)

Unified Diff: third_party/WebKit/Source/web/tests/sim/SimCompositor.h

Issue 2860673002: Change all test cases to use WebViewBase instead of WebViewImpl. (Closed)
Patch Set: Address code review comments. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
};

Powered by Google App Engine
This is Rietveld 408576698