| Index: chrome/browser/tab_contents/interstitial_page.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/interstitial_page.cc (revision 27783)
|
| +++ chrome/browser/tab_contents/interstitial_page.cc (working copy)
|
| @@ -93,6 +93,7 @@
|
| virtual void UpdateDragCursor(WebDragOperation operation);
|
| virtual void GotFocus();
|
| virtual void TakeFocus(bool reverse);
|
| + virtual bool IsReservedAccelerator(const NativeWebKeyboardEvent& event);
|
| virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
|
| virtual void HandleMouseEvent();
|
| virtual void HandleMouseLeave();
|
| @@ -575,6 +576,11 @@
|
| interstitial_page_->tab()->GetViewDelegate()->TakeFocus(reverse);
|
| }
|
|
|
| +bool InterstitialPage::InterstitialPageRVHViewDelegate::IsReservedAccelerator(
|
| + const NativeWebKeyboardEvent& event) {
|
| + return false;
|
| +}
|
| +
|
| void InterstitialPage::InterstitialPageRVHViewDelegate::HandleKeyboardEvent(
|
| const NativeWebKeyboardEvent& event) {
|
| if (interstitial_page_->tab() && interstitial_page_->tab()->GetViewDelegate())
|
|
|