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

Unified Diff: chrome/browser/ui/views/frame/native_browser_frame.cc

Issue 2074643003: MacViews: Views accelerators table should match the Cocoa one. (Closed) Base URL: ssh://bitbucket.browser.yandex-team.ru/chromium/src.git@master
Patch Set: e --> shortcut Created 4 years, 1 month 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: chrome/browser/ui/views/frame/native_browser_frame.cc
diff --git a/chrome/browser/ui/views/frame/native_browser_frame.cc b/chrome/browser/ui/views/frame/native_browser_frame.cc
new file mode 100644
index 0000000000000000000000000000000000000000..666f8e8b5a0c18de78c27d5b96d1676a31cd7fb0
--- /dev/null
+++ b/chrome/browser/ui/views/frame/native_browser_frame.cc
@@ -0,0 +1,15 @@
+// Copyright 2016 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 "chrome/browser/ui/views/frame/native_browser_frame.h"
+
+bool NativeBrowserFrame::PreHandleKeyboardEvent(
+ const content::NativeWebKeyboardEvent& event) {
+ return false;
+}
+
+bool NativeBrowserFrame::HandleKeyboardEvent(
+ const content::NativeWebKeyboardEvent& event) {
+ return false;
+}

Powered by Google App Engine
This is Rietveld 408576698