blob: 7be81c11f86d2336e875f027fb109777dce6b3ad [file] [log] [blame]
// Copyright 2015 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 UI_DISPLAY_MANAGER_APPLY_CONTENT_PROTECTION_TASK_H_
#define UI_DISPLAY_MANAGER_APPLY_CONTENT_PROTECTION_TASK_H_
#include <cstddef>
#include <cstdint>
#include <vector>
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "ui/display/manager/content_protection_manager.h"
#include "ui/display/types/display_constants.h"
namespace display {
class DisplayLayoutManager;
class NativeDisplayDelegate;
class DISPLAY_MANAGER_EXPORT ApplyContentProtectionTask
: public ContentProtectionManager::Task {
public:
using ResponseCallback = base::OnceCallback<void(Status)>;
// The task disables protection on displays omitted from |requests|. Note that
// pending tasks are killed on display reconfiguration.
ApplyContentProtectionTask(
DisplayLayoutManager* layout_manager,
NativeDisplayDelegate* native_display_delegate,
ContentProtectionManager::ContentProtections requests,
ResponseCallback callback);
~ApplyContentProtectionTask() override;
void Run() override;
private:
void OnGetHDCPState(DisplaySnapshot* display, bool success, HDCPState state);
void OnSetHDCPState(bool success);
uint32_t GetDesiredProtectionMask(int64_t display_id) const;
DisplayLayoutManager* const layout_manager_; // Not owned.
NativeDisplayDelegate* const native_display_delegate_; // Not owned.
const ContentProtectionManager::ContentProtections requests_;
ResponseCallback callback_;
std::vector<std::pair<DisplaySnapshot*, HDCPState>> hdcp_requests_;
bool success_ = true;
size_t pending_requests_ = 0;
base::WeakPtrFactory<ApplyContentProtectionTask> weak_ptr_factory_{this};
DISALLOW_COPY_AND_ASSIGN(ApplyContentProtectionTask);
};
} // namespace display
#endif // UI_DISPLAY_MANAGER_APPLY_CONTENT_PROTECTION_TASK_H_