| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/display_compositor/compositor_overlay_candidate_validator_w
in.h" | |
| 6 | |
| 7 #include "cc/output/overlay_processor.h" | |
| 8 | |
| 9 namespace display_compositor { | |
| 10 | |
| 11 CompositorOverlayCandidateValidatorWin:: | |
| 12 CompositorOverlayCandidateValidatorWin() {} | |
| 13 | |
| 14 CompositorOverlayCandidateValidatorWin:: | |
| 15 ~CompositorOverlayCandidateValidatorWin() {} | |
| 16 | |
| 17 void CompositorOverlayCandidateValidatorWin::GetStrategies( | |
| 18 cc::OverlayProcessor::StrategyList* strategies) { | |
| 19 } | |
| 20 | |
| 21 void CompositorOverlayCandidateValidatorWin::CheckOverlaySupport( | |
| 22 cc::OverlayCandidateList* candidates) { | |
| 23 NOTIMPLEMENTED(); | |
| 24 } | |
| 25 | |
| 26 bool CompositorOverlayCandidateValidatorWin::AllowCALayerOverlays() { | |
| 27 return false; | |
| 28 } | |
| 29 | |
| 30 bool CompositorOverlayCandidateValidatorWin::AllowDCLayerOverlays() { | |
| 31 return true; | |
| 32 } | |
| 33 | |
| 34 void CompositorOverlayCandidateValidatorWin::SetSoftwareMirrorMode( | |
| 35 bool enabled) { | |
| 36 // Software mirroring isn't supported on Windows. | |
| 37 NOTIMPLEMENTED(); | |
| 38 } | |
| 39 | |
| 40 } // namespace display_compositor | |
| OLD | NEW |