| Index: chrome/browser/ui/views/accelerator_table.h
|
| diff --git a/chrome/browser/ui/views/accelerator_table.h b/chrome/browser/ui/views/accelerator_table.h
|
| index f717e5b1902a3c246e2261d85d7f3474c15319fa..d65fd8bd7b8a5cb60aeb87f36e317ce880ee45d3 100644
|
| --- a/chrome/browser/ui/views/accelerator_table.h
|
| +++ b/chrome/browser/ui/views/accelerator_table.h
|
| @@ -6,26 +6,27 @@
|
| #define CHROME_BROWSER_UI_VIEWS_ACCELERATOR_TABLE_H_
|
| #pragma once
|
|
|
| -#include <stdio.h>
|
| +#include <stddef.h>
|
|
|
| #include "ui/base/keycodes/keyboard_codes.h"
|
|
|
| // This contains the list of accelerators for the Aura implementation.
|
| namespace browser {
|
|
|
| - struct AcceleratorMapping {
|
| - ui::KeyboardCode keycode;
|
| - bool shift_pressed;
|
| - bool ctrl_pressed;
|
| - bool alt_pressed;
|
| - int command_id;
|
| - };
|
| +struct AcceleratorMapping {
|
| + ui::KeyboardCode keycode;
|
| + bool shift_pressed;
|
| + bool ctrl_pressed;
|
| + bool alt_pressed;
|
| + int command_id;
|
| +};
|
|
|
| - // The list of accelerators.
|
| - extern const AcceleratorMapping kAcceleratorMap[];
|
| +// The list of accelerators.
|
| +extern const AcceleratorMapping kAcceleratorMap[];
|
|
|
| - // The numbers of elements in kAcceleratorMap.
|
| - extern const size_t kAcceleratorMapLength;
|
| -}
|
| +// The numbers of elements in kAcceleratorMap.
|
| +extern const size_t kAcceleratorMapLength;
|
| +
|
| +} // namespace browser
|
|
|
| #endif // CHROME_BROWSER_UI_VIEWS_ACCELERATOR_TABLE_H_
|
|
|