Make USB permissions work in the new permission message system
[chromium-blink-merge.git] / content / browser / compositor / browser_compositor_overlay_candidate_validator.h
blob0c62e2bb14dc1d13166fe46e3f9c4d55cf4952c4
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.
5 #ifndef CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATOR_H_
6 #define CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATOR_H_
8 #include "cc/output/overlay_candidate_validator.h"
10 #include "content/common/content_export.h"
12 namespace content {
14 class CONTENT_EXPORT BrowserCompositorOverlayCandidateValidator
15 : public cc::OverlayCandidateValidator {
16 public:
17 BrowserCompositorOverlayCandidateValidator() {}
18 ~BrowserCompositorOverlayCandidateValidator() override {}
20 virtual void SetSoftwareMirrorMode(bool enabled) = 0;
22 private:
23 DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOverlayCandidateValidator);
26 } // namespace content
28 #endif // CONTENT_BROWSER_COMPOSITOR_BROWSER_COMPOSITOR_OVERLAY_CANDIDATE_VALIDATOR_H_