OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/automation/mock_tab_event_observer.h" | |
6 | |
7 MockTabEventObserver::MockTabEventObserver() { } | |
8 | |
9 MockTabEventObserver::MockTabEventObserver(AutomationTabHelper* tab_helper) { | |
10 TabEventObserver::StartObserving(tab_helper); | |
11 } | |
12 | |
13 MockTabEventObserver::~MockTabEventObserver() { } | |
14 | |
15 void MockTabEventObserver::StartObserving(AutomationTabHelper* tab_helper) { | |
16 TabEventObserver::StartObserving(tab_helper); | |
17 } | |
18 | |
19 void MockTabEventObserver::StopObserving(AutomationTabHelper* tab_helper) { | |
20 TabEventObserver::StopObserving(tab_helper); | |
21 } | |
OLD | NEW |