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

Unified Diff: components/keyboard_lock/keyboard_lock_host.cc

Issue 2879033002: Keyboard Lock Host implementation
Patch Set: Remove useless files Created 3 years, 4 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
« no previous file with comments | « components/keyboard_lock/keyboard_lock_host.h ('k') | components/keyboard_lock/keyboard_lock_host_null.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/keyboard_lock/keyboard_lock_host.cc
diff --git a/components/keyboard_lock/keyboard_lock_host.cc b/components/keyboard_lock/keyboard_lock_host.cc
new file mode 100644
index 0000000000000000000000000000000000000000..59834f364355926fc1709f2defb4a3651242baa1
--- /dev/null
+++ b/components/keyboard_lock/keyboard_lock_host.cc
@@ -0,0 +1,143 @@
+// 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 "components/keyboard_lock/keyboard_lock_host.h"
+
+#include <utility>
+
+#include "base/bind.h"
+#include "base/bind_helpers.h"
+#include "base/location.h"
+#include "base/logging.h"
+#include "base/memory/ptr_util.h"
+#include "base/single_thread_task_runner.h"
+#include "chrome/browser/ui/browser.h"
+#include "chrome/browser/ui/browser_finder.h"
+#include "components/keyboard_lock/active_key_event_filter.h"
+#include "components/keyboard_lock/active_key_event_filter_registrar.h"
+#include "components/keyboard_lock/key_event_filter_share_wrapper.h"
+#include "components/keyboard_lock/key_event_filter_thread_proxy.h"
+#include "components/keyboard_lock/key_hook_share_wrapper.h"
+#include "components/keyboard_lock/key_hook_state_keeper.h"
+#include "components/keyboard_lock/page_observer.h"
+#include "components/keyboard_lock/platform_key_hook.h"
+#include "components/keyboard_lock/widget_key_event_filter.h"
+#include "content/public/browser/web_contents.h"
+#include "ui/events/keycodes/dom/keycode_converter.h"
+
+namespace keyboard_lock {
+
+namespace {
+
+std::unique_ptr<KeyHookStateKeeper> CreateKeyHookStateKeeper(
+ const scoped_refptr<base::SingleThreadTaskRunner>& runner,
+ ActiveKeyEventFilterTracker* tracker,
+ Browser* owner,
+ KeyEventFilter* filter) {
+ auto thread_proxy = base::MakeUnique<KeyEventFilterThreadProxy>(
+ runner, base::MakeUnique<ActiveKeyEventFilter>(tracker));
+ return base::MakeUnique<KeyHookStateKeeper>(
+ std::move(thread_proxy),
+ base::MakeUnique<PlatformKeyHook>(owner, filter));
+}
+
+} // namespace
+
+KeyboardLockHost::KeyboardLockHost(
+ Browser* owner,
+ scoped_refptr<base::SingleThreadTaskRunner> runner)
+ : owner_(owner),
+ runner_(std::move(runner)),
+ key_hook_(CreateKeyHookStateKeeper(
+ runner_, &active_key_event_filter_tracker_, owner_, filter())) {
+ DCHECK(runner_);
+ key_hook_.Activate(base::Callback<void(bool)>());
+}
+
+KeyboardLockHost::~KeyboardLockHost() = default;
+
+// static
+KeyboardLockHost* KeyboardLockHost::Find(const content::WebContents* contents) {
+ Browser* browser = chrome::FindBrowserWithWebContents(contents);
+ if (!browser) {
+ LOG(ERROR) << "No browser found from WebContents " << contents;
+ return nullptr;
+ }
+ DCHECK(browser->GetKeyboardLockHost());
+ return browser->GetKeyboardLockHost();
+}
+
+KeyEventFilter* KeyboardLockHost::filter() const {
+ return const_cast<KeyHookThreadWrapper*>(&key_hook_);
+}
+
+void KeyboardLockHost::SetReservedKeys(
+ content::WebContents* contents,
+ const std::vector<ui::KeyboardCode>& codes,
+ base::Callback<void(bool)> on_result) {
+ if (!runner_->BelongsToCurrentThread()) {
+ // TODO(zijiehe): The |contents| is not safe to be posted to other threads.
+ if (!runner_->PostTask(FROM_HERE, base::BindOnce(
+ &KeyboardLockHost::SetReservedKeys,
+ base::Unretained(this),
+ base::Unretained(contents),
+ codes,
+ on_result))) {
+ if (on_result) {
+ on_result.Run(false);
+ }
+ }
+ return;
+ }
+
+ KeyHookActivator* key_hook = key_hooks_.Find(contents);
+ if (key_hook) {
+ key_hook->RegisterKey(codes, on_result);
+ return;
+ }
+
+ auto state_keeper = base::MakeUnique<KeyHookStateKeeper>(
+ base::MakeUnique<WidgetKeyEventFilter>(contents),
+ base::MakeUnique<KeyHookShareWrapper>(&key_hook_));
+ state_keeper->RegisterKey(codes, on_result);
+ auto* filter = state_keeper.get();
+ key_hooks_.Insert(contents, base::MakeUnique<ActiveKeyEventFilterRegistrar>(
+ &active_key_event_filter_tracker_,
+ std::move(state_keeper),
+ filter));
+ PageObserver::Observe(contents, &key_hooks_);
+}
+
+void KeyboardLockHost::SetReservedKeyCodes(
+ content::WebContents* contents,
+ const std::vector<std::string>& codes,
+ base::Callback<void(bool)> on_result) {
+ std::vector<ui::KeyboardCode> ui_codes;
+ for (auto code : codes) {
+ ui_codes.push_back(NativeKeycodeToKeyboardCode(
+ ui::KeycodeConverter::CodeStringToNativeKeycode(code)));
+ }
+ SetReservedKeys(contents, ui_codes, std::move(on_result));
+}
+
+void KeyboardLockHost::ClearReservedKeys(content::WebContents* contents,
+ base::Callback<void(bool)> on_result) {
+ if (!runner_->BelongsToCurrentThread()) {
+ // TODO(zijiehe): The |contents| is not safe to be posted to other threads.
+ if (!runner_->PostTask(FROM_HERE, base::BindOnce(
+ &KeyboardLockHost::ClearReservedKeys,
+ base::Unretained(this),
+ base::Unretained(contents),
+ on_result))) {
+ if (on_result) {
+ on_result.Run(false);
+ }
+ }
+ return;
+ }
+
+ key_hooks_.Erase(contents);
+}
+
+} // namespace keyboard_lock
« no previous file with comments | « components/keyboard_lock/keyboard_lock_host.h ('k') | components/keyboard_lock/keyboard_lock_host_null.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698