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

Unified Diff: content/browser/compositor/reflector_impl_unittest.cc

Issue 775143003: cc: Implement unified BeginFrame on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add unittest Created 5 years, 9 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: content/browser/compositor/reflector_impl_unittest.cc
diff --git a/content/browser/compositor/reflector_impl_unittest.cc b/content/browser/compositor/reflector_impl_unittest.cc
index e1a5af31e5d7537d73aab516f0fbf1e08e48932a..1eaf0dbdf174cde9d3e092cc3f62b477e5b12d34 100644
--- a/content/browser/compositor/reflector_impl_unittest.cc
+++ b/content/browser/compositor/reflector_impl_unittest.cc
@@ -40,11 +40,9 @@ class FakeTaskRunner : public base::SingleThreadTaskRunner {
class TestOutputSurface : public BrowserCompositorOutputSurface {
public:
- TestOutputSurface(
- const scoped_refptr<cc::ContextProvider>& context_provider,
- const scoped_refptr<ui::CompositorVSyncManager>& vsync_manager)
- : BrowserCompositorOutputSurface(context_provider,
- vsync_manager) {}
+ explicit TestOutputSurface(
+ const scoped_refptr<cc::ContextProvider>& context_provider)
+ : BrowserCompositorOutputSurface(context_provider) {}
void SetFlip(bool flip) { capabilities_.flipped_output_surface = flip; }
@@ -83,8 +81,7 @@ class ReflectorImplTest : public testing::Test {
cc::TestWebGraphicsContext3D::Create().Pass());
output_surface_ =
scoped_ptr<TestOutputSurface>(
- new TestOutputSurface(context_provider_,
- compositor_->vsync_manager())).Pass();
+ new TestOutputSurface(context_provider_)).Pass();
CHECK(output_surface_->BindToClient(&output_surface_client_));
mirroring_layer_.reset(new ui::Layer(ui::LAYER_SOLID_COLOR));

Powered by Google App Engine
This is Rietveld 408576698