OLD | NEW |
(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 } |
OLD | NEW |