OLD | NEW |
| (Empty) |
1 // Copyright 2015 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 #ifndef COMPONENTS_DISPLAY_COMPOSITOR_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATOR_H_ | |
6 #define COMPONENTS_DISPLAY_COMPOSITOR_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATOR_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "cc/output/overlay_candidate_validator.h" | |
10 #include "components/display_compositor/display_compositor_export.h" | |
11 | |
12 namespace display_compositor { | |
13 | |
14 class DISPLAY_COMPOSITOR_EXPORT CompositorOverlayCandidateValidator | |
15 : public cc::OverlayCandidateValidator { | |
16 public: | |
17 CompositorOverlayCandidateValidator() {} | |
18 ~CompositorOverlayCandidateValidator() override {} | |
19 | |
20 virtual void SetSoftwareMirrorMode(bool enabled) = 0; | |
21 | |
22 private: | |
23 DISALLOW_COPY_AND_ASSIGN(CompositorOverlayCandidateValidator); | |
24 }; | |
25 | |
26 } // namespace display_compositor | |
27 | |
28 #endif // COMPONENTS_DISPLAY_COMPOSITOR_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATOR_
H_ | |
OLD | NEW |