| Index: chrome/browser/ui/panels/panel.h
|
| diff --git a/chrome/browser/ui/panels/panel.h b/chrome/browser/ui/panels/panel.h
|
| index d8709076aa1b9eae57103c3ab55c69705eefba54..8684fb099bb3eec6dcaaef0c74474ec157d2c811 100644
|
| --- a/chrome/browser/ui/panels/panel.h
|
| +++ b/chrome/browser/ui/panels/panel.h
|
| @@ -32,6 +32,7 @@ class SkBitmap;
|
|
|
| namespace content {
|
| class WebContents;
|
| +struct NativeWebKeyboardEvent;
|
| }
|
|
|
| // A platform independent implementation of BaseWindow for Panels.
|
| @@ -245,6 +246,9 @@ class Panel : public BaseWindow,
|
| // user-resizable, it should not be a problem.
|
| void IncreaseMaxSize(const gfx::Size& desired_panel_size);
|
|
|
| + // Handles keyboard events coming back from the renderer.
|
| + void HandleKeyboardEvent(const content::NativeWebKeyboardEvent& event);
|
| +
|
| // Whether the panel window is always on top.
|
| void SetAlwaysOnTop(bool on_top);
|
| bool always_on_top() const { return always_on_top_; }
|
|
|