Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(815)

Unified Diff: third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.cpp

Issue 2805763004: [System-Keyboard-Lock] Forward navigator functions to RenderFrameHost (Closed)
Patch Set: Sync latest changes Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..7a6eb8009605ad4d842e202ffda8d92af1fd6807
--- /dev/null
+++ b/third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.cpp
@@ -0,0 +1,113 @@
+// 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 (!EnsureServiceConnected()) {
+ return ScriptPromise::Reject(
+ state, V8String(state->GetIsolate(), "Current frame is detached."));
+ }
+
+ 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 (!EnsureServiceConnected()) {
+ // Current frame is detached.
+ return;
+ }
+
+ service_->CancelKeyLock();
+}
+
+// static
+void NavigatorKeyboardLock::cancelKeyLock(Navigator& navigator) {
+ NavigatorKeyboardLock::From(navigator).cancelKeyLock();
+}
+
+bool NavigatorKeyboardLock::EnsureServiceConnected() {
+ if (!service_) {
+ LocalFrame* frame = GetSupplementable()->GetFrame();
+ if (!frame) {
+ return false;
+ }
+ frame->GetInterfaceProvider()->GetInterface(mojo::MakeRequest(&service_));
+ }
+
+ DCHECK(service_);
+ return true;
+}
+
+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

Powered by Google App Engine
This is Rietveld 408576698