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

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

Issue 1016033006: Enable BeginFrame scheduling on aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mac build 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..118fcdfd5438b5de5a5c42b9dca80f96960d088c 100644
--- a/content/browser/compositor/reflector_impl_unittest.cc
+++ b/content/browser/compositor/reflector_impl_unittest.cc
@@ -41,10 +41,8 @@ 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) {}
+ 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();
danakj 2015/03/25 17:40:38 (the .Pass() is redundant and not needed here. "ne
simonhong 2015/03/25 18:05:22 Done.
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