Chromium Code Reviews| Index: third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.cpp |
| diff --git a/third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.cpp b/third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..eb5c855b4f236f7b2a262e5759ac2201dc887832 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.cpp |
| @@ -0,0 +1,112 @@ |
| +// 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. |
| + |
| +#include "modules/keyboard_lock/NavigatorKeyboardLock.h" |
| + |
| +#include "bindings/core/v8/ScriptPromise.h" |
| +#include "bindings/core/v8/ScriptPromiseResolver.h" |
| +#include "bindings/core/v8/V8Binding.h" |
| +#include "core/frame/LocalFrame.h" |
| +#include "platform/heap/Persistent.h" |
| +#include "platform/wtf/Assertions.h" |
| +#include "platform/wtf/Functional.h" |
| +#include "public/platform/InterfaceProvider.h" |
| + |
| +namespace blink { |
| + |
| +NavigatorKeyboardLock::NavigatorKeyboardLock(Navigator& navigator) |
| + : Supplement<Navigator>(navigator) {} |
| + |
| +NavigatorKeyboardLock& NavigatorKeyboardLock::From(Navigator& navigator) { |
| + NavigatorKeyboardLock* supplement = static_cast<NavigatorKeyboardLock*>( |
| + Supplement<Navigator>::From(navigator, SupplementName())); |
| + if (!supplement) { |
| + supplement = new NavigatorKeyboardLock(navigator); |
| + ProvideTo(navigator, SupplementName(), supplement); |
| + } |
| + return *supplement; |
| +} |
| + |
| +// static |
| +ScriptPromise NavigatorKeyboardLock::requestKeyLock( |
| + ScriptState* state, |
| + Navigator& navigator, |
| + const Vector<String>& keycodes) { |
| + return NavigatorKeyboardLock::From(navigator).requestKeyLock(state, keycodes); |
| +} |
| + |
| +ScriptPromise NavigatorKeyboardLock::requestKeyLock( |
| + ScriptState* state, |
| + const Vector<String>& keycodes) { |
| + DCHECK(state); |
| + if (request_keylock_resolver_) { |
| + // TODO(zijiehe): Reject with a DOMException once it has been defined in the |
| + // spec. See https://github.com/w3c/keyboard-lock/issues/18. |
| + return ScriptPromise::Reject( |
| + state, V8String(state->GetIsolate(), |
| + "Last requestKeyLock() has not finished yet.")); |
| + } |
| + |
| + if (!service_) { |
| + LocalFrame* frame = GetSupplementable()->GetFrame(); |
| + if (!frame) { |
| + // TODO(zijiehe): Retrying instead of rejecting the request if browser is |
| + // not connected. |
|
dcheng
2017/04/28 15:33:45
This isn't a recoverable error -- once frame is nu
Hzj_jie
2017/04/28 19:16:02
I do not really understand the insight: why would
|
| + return ScriptPromise::Reject( |
| + state, V8String(state->GetIsolate(), "Current frame is detached.")); |
| + } |
| + frame->GetInterfaceProvider()->GetInterface(mojo::MakeRequest(&service_)); |
| + } |
| + DCHECK(service_); |
| + |
| + request_keylock_resolver_ = ScriptPromiseResolver::Create(state); |
| + service_->RequestKeyLock( |
| + keycodes, |
| + ConvertToBaseCallback(WTF::Bind( |
| + &NavigatorKeyboardLock::LockRequestFinished, WrapPersistent(this)))); |
| + return request_keylock_resolver_->Promise(); |
| +} |
| + |
| +void NavigatorKeyboardLock::cancelKeyLock() { |
| + if (!service_) { |
| + LocalFrame* frame = GetSupplementable()->GetFrame(); |
| + if (!frame) { |
| + // Current frame is detached. |
| + return; |
| + } |
| + frame->GetInterfaceProvider()->GetInterface(mojo::MakeRequest(&service_)); |
| + } |
| + DCHECK(service_); |
| + |
| + service_->CancelKeyLock(); |
| +} |
| + |
| +// static |
| +void NavigatorKeyboardLock::cancelKeyLock(Navigator& navigator) { |
| + NavigatorKeyboardLock::From(navigator).cancelKeyLock(); |
| +} |
| + |
| +void NavigatorKeyboardLock::LockRequestFinished(bool allowed, |
| + const String& reason) { |
| + DCHECK(request_keylock_resolver_); |
| + // TODO(zijiehe): Reject with a DOMException once it has been defined in the |
| + // spec. |
| + if (allowed) |
| + request_keylock_resolver_->Resolve(); |
| + else |
| + request_keylock_resolver_->Reject(reason); |
| + request_keylock_resolver_ = nullptr; |
| +} |
| + |
| +// static |
| +const char* NavigatorKeyboardLock::SupplementName() { |
| + return "NavigatorKeyboardLock"; |
| +} |
| + |
| +DEFINE_TRACE(NavigatorKeyboardLock) { |
| + visitor->Trace(request_keylock_resolver_); |
| + Supplement<Navigator>::Trace(visitor); |
| +} |
| + |
| +} // namespace blink |