Index: chrome/browser/instant/instant_tab.cc |
diff --git a/chrome/browser/instant/instant_tab.cc b/chrome/browser/instant/instant_tab.cc |
index 33cfe621649223bbfdc5a8f243b12208a394050e..a6a081ad2b8fa47d69082727ea888adba11d078b 100644 |
--- a/chrome/browser/instant/instant_tab.cc |
+++ b/chrome/browser/instant/instant_tab.cc |
@@ -42,6 +42,10 @@ void InstantTab::SetDisplayInstantResults(bool display_instant_results) { |
client_.SetDisplayInstantResults(display_instant_results); |
} |
+void InstantTab::KeyCaptureChanged(bool is_key_capture_enabled) { |
+ client_.KeyCaptureChanged(is_key_capture_enabled); |
+} |
+ |
void InstantTab::UpOrDownKeyPressed(int count) { |
client_.UpOrDownKeyPressed(count); |
} |
@@ -77,11 +81,11 @@ void InstantTab::ShowInstantPreview(InstantShownReason /* reason */, |
} |
void InstantTab::StartCapturingKeyStrokes() { |
- // We don't honor this call from committed tabs. |
+ controller_->StartCapturingKeyStrokes(contents()); |
} |
void InstantTab::StopCapturingKeyStrokes() { |
- // We don't honor this call from committed tabs. |
+ controller_->StopCapturingKeyStrokes(contents()); |
} |
void InstantTab::RenderViewGone() { |