| Index: chrome/browser/ui/views/frame/browser_view_platform_common.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_view_platform_common.cc b/chrome/browser/ui/views/frame/browser_view_platform_common.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2def73ce5d200c30b946089c9f09c6e49feb9a98
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/views/frame/browser_view_platform_common.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2016 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 "chrome/browser/ui/views/frame/browser_view_platform.h"
|
| +
|
| +#include "build/build_config.h"
|
| +
|
| +#if !defined(OS_MACOSX)
|
| +// static
|
| +bool BrowserViewPlatform::PreHandleKeyboardEvent(
|
| + const content::NativeWebKeyboardEvent& event,
|
| + Browser* browser) {
|
| + return false;
|
| +}
|
| +
|
| +// static
|
| +bool BrowserViewPlatform::HandleKeyboardEvent(
|
| + const content::NativeWebKeyboardEvent& event,
|
| + Browser* browser) {
|
| + return false;
|
| +}
|
| +#endif // OS_MACOSX
|
|
|