OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/aura/browser_compositor_output_surface.h" | 5 #include "content/browser/aura/browser_compositor_output_surface.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/location.h" | 9 #include "base/location.h" |
10 #include "base/message_loop/message_loop_proxy.h" | 10 #include "base/message_loop/message_loop_proxy.h" |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 FROM_HERE, | 97 FROM_HERE, |
98 base::Bind(&ui::Compositor::OnUpdateVSyncParameters, | 98 base::Bind(&ui::Compositor::OnUpdateVSyncParameters, |
99 compositor_, timebase, interval)); | 99 compositor_, timebase, interval)); |
100 } | 100 } |
101 | 101 |
102 void BrowserCompositorOutputSurface::SetReflector(ReflectorImpl* reflector) { | 102 void BrowserCompositorOutputSurface::SetReflector(ReflectorImpl* reflector) { |
103 reflector_ = reflector; | 103 reflector_ = reflector; |
104 } | 104 } |
105 | 105 |
106 } // namespace content | 106 } // namespace content |
OLD | NEW |