Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3261)

Unified Diff: chrome/browser/tab_contents/interstitial_page.cc

Issue 40065: RenderWidgetHost now stores both the WebKeyboardEvent and the native (Closed)
Patch Set: Redesign Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698