blob: 577c2c81435dc85c21a134917ae986cb43e6058c [file] [log] [blame]
// Copyright 2014 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 WebEncryptedMediaClient_h
#define WebEncryptedMediaClient_h
#include "WebCommon.h"
namespace blink {
class WebEncryptedMediaRequest;
class BLINK_PLATFORM_EXPORT WebEncryptedMediaClient {
public:
virtual ~WebEncryptedMediaClient();
virtual void requestMediaKeySystemAccess(WebEncryptedMediaRequest) = 0;
};
} // namespace blink
#endif // WebEncryptedMediaClient_h