| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/compositor/browser_compositor_output_surface.h" | 5 #include "content/browser/compositor/browser_compositor_output_surface.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 base::Closure | 144 base::Closure |
| 145 BrowserCompositorOutputSurface::CreateCompositionStartedCallback() { | 145 BrowserCompositorOutputSurface::CreateCompositionStartedCallback() { |
| 146 return base::Closure(); | 146 return base::Closure(); |
| 147 } | 147 } |
| 148 | 148 |
| 149 cc::OverlayCandidateValidator* | 149 cc::OverlayCandidateValidator* |
| 150 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const { | 150 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const { |
| 151 return overlay_candidate_validator_.get(); | 151 return overlay_candidate_validator_.get(); |
| 152 } | 152 } |
| 153 | 153 |
| 154 #if defined(OS_MACOSX) |
| 155 void BrowserCompositorOutputSurface::SetSurfaceSuspendedForRecycle( |
| 156 bool suspended) {} |
| 157 #endif |
| 158 |
| 154 } // namespace content | 159 } // namespace content |
| OLD | NEW |