| Index: chrome/browser/tab_contents/interstitial_page.cc
|
| diff --git a/chrome/browser/tab_contents/interstitial_page.cc b/chrome/browser/tab_contents/interstitial_page.cc
|
| index e0ebd23bdb21167d83c285ab389d25f66a22abd5..198b12f0d06a1cfef44231c7084a3df7fdd6a866 100644
|
| --- a/chrome/browser/tab_contents/interstitial_page.cc
|
| +++ b/chrome/browser/tab_contents/interstitial_page.cc
|
| @@ -86,7 +86,7 @@ class InterstitialPage::InterstitialPageRVHViewDelegate
|
| virtual void StartDragging(const WebDropData& drop_data);
|
| virtual void UpdateDragCursor(bool is_drop_target);
|
| virtual void TakeFocus(bool reverse);
|
| - virtual void HandleKeyboardEvent(const WebKeyboardEvent& event);
|
| + virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
|
| virtual void ForwardMessageToDevToolsClient(const IPC::Message& message);
|
| virtual void OnFindReply(int request_id,
|
| int number_of_matches,
|
| @@ -498,7 +498,7 @@ void InterstitialPage::InterstitialPageRVHViewDelegate::TakeFocus(
|
| }
|
|
|
| void InterstitialPage::InterstitialPageRVHViewDelegate::HandleKeyboardEvent(
|
| - const WebKeyboardEvent& event) {
|
| + const NativeWebKeyboardEvent& event) {
|
| if (interstitial_page_->tab() && interstitial_page_->tab()->GetViewDelegate())
|
| interstitial_page_->tab()->GetViewDelegate()->HandleKeyboardEvent(event);
|
| }
|
|
|