| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const { | 68 BrowserCompositorOutputSurface::GetOverlayCandidateValidator() const { |
| 69 return overlay_candidate_validator_.get(); | 69 return overlay_candidate_validator_.get(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 bool BrowserCompositorOutputSurface::HasExternalStencilTest() const { | 72 bool BrowserCompositorOutputSurface::HasExternalStencilTest() const { |
| 73 return false; | 73 return false; |
| 74 } | 74 } |
| 75 | 75 |
| 76 void BrowserCompositorOutputSurface::ApplyExternalStencil() {} | 76 void BrowserCompositorOutputSurface::ApplyExternalStencil() {} |
| 77 | 77 |
| 78 bool BrowserCompositorOutputSurface::CanPartialDraw(const gfx::Rect& damage) { |
| 79 return false; |
| 80 } |
| 81 |
| 78 } // namespace content | 82 } // namespace content |
| OLD | NEW |