diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-28 16:43:41 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-28 16:43:41 +0000 |
commit | abc659b6d95cf197c2b96a544351a667e8b96f95 (patch) | |
tree | dc34447c1ed22814265a8c2fd791efca6c78aaa2 /base/keyboard_codes.h | |
parent | 9b2208ea791142be19fe653707ef0f1224091b05 (diff) | |
download | chromium_src-abc659b6d95cf197c2b96a544351a667e8b96f95.zip chromium_src-abc659b6d95cf197c2b96a544351a667e8b96f95.tar.gz chromium_src-abc659b6d95cf197c2b96a544351a667e8b96f95.tar.bz2 |
Add portable keyboard codes
Review URL: http://codereview.chromium.org/19021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8804 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/keyboard_codes.h')
-rw-r--r-- | base/keyboard_codes.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/base/keyboard_codes.h b/base/keyboard_codes.h new file mode 100644 index 0000000..2f66ac1 --- /dev/null +++ b/base/keyboard_codes.h @@ -0,0 +1,16 @@ +// 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. + +#ifndef BASE_KEYBOARD_CODES_H_ +#define BASE_KEYBOARD_CODES_H_ + +#include "build/build_config.h" + +#if defined(OS_WIN) +#include "base/keyboard_codes_win.h" +#elif defined(OS_POSIX) +#include "base/keyboard_codes_posix.h" +#endif + +#endif // BASE_KEYBOARD_CODES_H_ |