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

Side by Side Diff: chrome/browser/ui/views/frame/browser_view_platform_common.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: Updated accelerator_table.cc, removed non-Cocoa shortcuts, added global_keyboard_shortcuts_mac.mm h… Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/views/frame/browser_view_platform.h"
6
7 #include "build/build_config.h"
8
9 #if !defined(OS_MACOSX)
10 // static
11 bool BrowserViewPlatform::PreHandleKeyboardEvent(
12 const content::NativeWebKeyboardEvent& event,
13 Browser* browser) {
14 return false;
15 }
16
17 // static
18 bool BrowserViewPlatform::HandleKeyboardEvent(
19 const content::NativeWebKeyboardEvent& event,
20 Browser* browser) {
21 return false;
22 }
23 #endif // OS_MACOSX
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698