blob: 0d4087bf4b174538feefa346c03192a6cc75d5b6 [file] [log] [blame]
// Copyright 2018 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 THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_DISPLAY_LOCK_CONTEXT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_DISPLAY_LOCK_CONTEXT_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
namespace blink {
class V8DisplayLockCallback;
class CORE_EXPORT DisplayLockContext final : public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
DisplayLockContext() = default;
~DisplayLockContext() override;
void Dispose();
void schedule(V8DisplayLockCallback*);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_DISPLAY_LOCK_DISPLAY_LOCK_CONTEXT_H_