blob: 5dab945a365b843d6316347ac1de558fb3a75461 [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_MODULES_KEYBOARD_KEYBOARD_LAYOUT_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_KEYBOARD_KEYBOARD_LAYOUT_H_
#include "base/macros.h"
#include "third_party/blink/public/mojom/keyboard_lock/keyboard_lock.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/modules/keyboard/keyboard_layout_map.h"
#include "third_party/blink/renderer/platform/mojo/heap_mojo_remote.h"
#include "third_party/blink/renderer/platform/mojo/heap_mojo_wrapper_mode.h"
namespace blink {
class ExceptionState;
class ScriptPromiseResolver;
class KeyboardLayout final : public GarbageCollected<KeyboardLayout>,
public ExecutionContextClient {
public:
explicit KeyboardLayout(ExecutionContext*);
virtual ~KeyboardLayout() = default;
ScriptPromise GetKeyboardLayoutMap(ScriptState*, ExceptionState&);
void Trace(Visitor*) const override;
private:
// Returns true if the local frame is attached to the renderer.
bool IsLocalFrameAttached();
// Returns true if |service_| is initialized and ready to be called.
bool EnsureServiceConnected();
// Returns true if the current frame is a top-level browsing context.
bool CalledFromSupportedContext(ExecutionContext*);
void GotKeyboardLayoutMap(ScriptPromiseResolver*,
mojom::blink::GetKeyboardLayoutMapResultPtr);
Member<ScriptPromiseResolver> script_promise_resolver_;
HeapMojoRemote<mojom::blink::KeyboardLockService,
HeapMojoWrapperMode::kWithoutContextObserver>
service_;
DISALLOW_COPY_AND_ASSIGN(KeyboardLayout);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_KEYBOARD_KEYBOARD_LAYOUT_H_