| Index: chrome/browser/ui/views/frame/browser_frame.h
|
| diff --git a/chrome/browser/ui/views/frame/browser_frame.h b/chrome/browser/ui/views/frame/browser_frame.h
|
| index 643043b62f181666da77346b150bd5bf8190e01f..d1cb212524e0089d0584b843d7b15cefa6ef7ae8 100644
|
| --- a/chrome/browser/ui/views/frame/browser_frame.h
|
| +++ b/chrome/browser/ui/views/frame/browser_frame.h
|
| @@ -20,6 +20,10 @@ class NativeBrowserFrame;
|
| class NonClientFrameView;
|
| class SystemMenuModelBuilder;
|
|
|
| +namespace content {
|
| +struct NativeWebKeyboardEvent;
|
| +}
|
| +
|
| namespace gfx {
|
| class FontList;
|
| class Rect;
|
| @@ -97,6 +101,12 @@ class BrowserFrame
|
| void GetWindowPlacement(gfx::Rect* bounds,
|
| ui::WindowShowState* show_state) const;
|
|
|
| + // Returns true if the |event| was handled by the platform implementation.
|
| + bool PreHandleKeyboardEvent(const content::NativeWebKeyboardEvent& event);
|
| +
|
| + // Returns true if the |event| was handled by the platform implementation.
|
| + bool HandleKeyboardEvent(const content::NativeWebKeyboardEvent& event);
|
| +
|
| // Called when BrowserView creates all it's child views.
|
| void OnBrowserViewInitViewsComplete();
|
|
|
|
|