blob: f419b2f6f24865da6ff78fec89463f9bc5e5bdb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (c) 2009 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 <gtk/gtk.h>
// This contains the list of accelerators shared between the Linux Gtk and
// toolkit_view implementation.
namespace browser {
struct AcceleratorMapping {
guint keyval;
int command_id;
GdkModifierType modifier_type;
};
// The list of accelerators.
extern const AcceleratorMapping kAcceleratorMap[];
// The numbers of elements in kAcceleratorMap.
extern const size_t kAcceleratorMapLength;
}
|