| Index: chrome/browser/tab_contents/tab_contents_view.cc
|
| ===================================================================
|
| --- chrome/browser/tab_contents/tab_contents_view.cc (revision 55530)
|
| +++ chrome/browser/tab_contents/tab_contents_view.cc (working copy)
|
| @@ -66,6 +66,14 @@
|
| ShowCreatedWidgetInternal(widget_host_view, initial_pos);
|
| }
|
|
|
| +void TabContentsView::Activate() {
|
| + tab_contents_->delegate()->Activate();
|
| +}
|
| +
|
| +void TabContentsView::Deactivate() {
|
| + tab_contents_->delegate()->Deactivate();
|
| +}
|
| +
|
| bool TabContentsView::PreHandleKeyboardEvent(
|
| const NativeWebKeyboardEvent& event, bool* is_keyboard_shortcut) {
|
| return tab_contents_->delegate() &&
|
|
|