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

Side by Side Diff: chrome/browser/global_keyboard_shortcuts_views_mac.mm

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: GetWindowKeyboardShortcutTable is now shared between Cocoa and MacViews. 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 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 "base/macros.h"
6 #include "chrome/app/chrome_command_ids.h"
7 #include "chrome/browser/global_keyboard_shortcuts_mac.h"
8
9 // These tables have been migrated to accelerator_table.cc.
10
11 const std::vector<KeyboardShortcutData>&
12 GetDelayedWindowKeyboardShortcutTable() {
13 CR_DEFINE_STATIC_LOCAL(std::vector<KeyboardShortcutData>, result, ({}));
14 return result;
15 }
16
17 const std::vector<KeyboardShortcutData>& GetBrowserKeyboardShortcutTable() {
18 CR_DEFINE_STATIC_LOCAL(std::vector<KeyboardShortcutData>, result, ({}));
19 return result;
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698