| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATO
R_H_ | 5 #ifndef CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATO
R_H_ |
| 6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATO
R_H_ | 6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATO
R_H_ |
| 7 | 7 |
| 8 #include "cc/output/overlay_candidate_validator.h" | 8 #include "cc/output/overlay_candidate_validator.h" |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 11 | 12 |
| 12 namespace content { | 13 namespace content { |
| 13 | 14 |
| 14 class CONTENT_EXPORT BrowserCompositorOverlayCandidateValidator | 15 class CONTENT_EXPORT BrowserCompositorOverlayCandidateValidator |
| 15 : public cc::OverlayCandidateValidator { | 16 : public cc::OverlayCandidateValidator { |
| 16 public: | 17 public: |
| 17 BrowserCompositorOverlayCandidateValidator() {} | 18 BrowserCompositorOverlayCandidateValidator() {} |
| 18 ~BrowserCompositorOverlayCandidateValidator() override {} | 19 ~BrowserCompositorOverlayCandidateValidator() override {} |
| 19 | 20 |
| 20 virtual void SetSoftwareMirrorMode(bool enabled) = 0; | 21 virtual void SetSoftwareMirrorMode(bool enabled) = 0; |
| 21 | 22 |
| 22 private: | 23 private: |
| 23 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOverlayCandidateValidator); | 24 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOverlayCandidateValidator); |
| 24 }; | 25 }; |
| 25 | 26 |
| 26 } // namespace content | 27 } // namespace content |
| 27 | 28 |
| 28 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALID
ATOR_H_ | 29 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALID
ATOR_H_ |
| OLD | NEW |