Chromium Code Reviews| Index: services/ui/display/output_protection.h |
| diff --git a/services/ui/display/output_protection.h b/services/ui/display/output_protection.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0b9f7cd2f71c85f272550673fb79e72445698ef5 |
| --- /dev/null |
| +++ b/services/ui/display/output_protection.h |
| @@ -0,0 +1,44 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef SERVICES_UI_DISPLAY_OUTPUT_PROTECTION_H_ |
| +#define SERVICES_UI_DISPLAY_OUTPUT_PROTECTION_H_ |
| + |
| +#include <stdint.h> |
| + |
| +#include "base/macros.h" |
| +#include "services/service_manager/public/cpp/connection.h" |
| +#include "services/service_manager/public/cpp/interface_factory.h" |
| +#include "services/ui/public/interfaces/display/output_protection.mojom.h" |
| + |
| +namespace display { |
| + |
| +class DisplayConfigurator; |
| + |
| +// OutputProtection provides the necessary functionality to configure output |
| +// protection. |
| +class OutputProtection : public mojom::OutputProtection { |
| + public: |
| + OutputProtection(DisplayConfigurator* display_configurator); |
|
sky
2017/02/13 17:05:01
explicit
Peng
2017/02/13 21:14:47
Done.
|
| + ~OutputProtection() override; |
| + |
| + // mojom::OutputProtection: |
| + void QueryContentProtectionStatus( |
| + int64_t display_id, |
| + const QueryContentProtectionStatusCallback& callback) override; |
| + void SetContentProtection( |
| + int64_t display_id, |
| + uint32_t desired_method_mask, |
| + const SetContentProtectionCallback& callback) override; |
| + |
| + private: |
| + DisplayConfigurator* const display_configurator_; |
| + const uint64_t client_id_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(OutputProtection); |
| +}; |
| + |
| +} // namespace display |
| + |
| +#endif // SERVICES_UI_DISPLAY_OUTPUT_PROTECTION_H_ |