| 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 #ifndef CHROME_BROWSER_AUTOMATION_MOCK_TAB_EVENT_OBSERVER_H_ | |
| 6 #define CHROME_BROWSER_AUTOMATION_MOCK_TAB_EVENT_OBSERVER_H_ | |
| 7 | |
| 8 #include "chrome/browser/automation/automation_tab_helper.h" | |
| 9 #include "testing/gmock/include/gmock/gmock.h" | |
| 10 | |
| 11 class MockTabEventObserver : public TabEventObserver { | |
| 12 public: | |
| 13 MockTabEventObserver(); | |
| 14 // Convenience constructor for observing the |tab_helper| on creation. | |
| 15 explicit MockTabEventObserver(AutomationTabHelper* tab_helper); | |
| 16 virtual ~MockTabEventObserver(); | |
| 17 | |
| 18 // Promote these to public for testing purposes. | |
| 19 void StartObserving(AutomationTabHelper* tab_helper); | |
| 20 void StopObserving(AutomationTabHelper* tab_helper); | |
| 21 | |
| 22 MOCK_METHOD1(OnFirstPendingLoad, void(content::WebContents* web_contents)); | |
| 23 MOCK_METHOD1(OnNoMorePendingLoads, void(content::WebContents* web_contents)); | |
| 24 | |
| 25 private: | |
| 26 DISALLOW_COPY_AND_ASSIGN(MockTabEventObserver); | |
| 27 }; | |
| 28 | |
| 29 #endif // CHROME_BROWSER_AUTOMATION_MOCK_TAB_EVENT_OBSERVER_H_ | |
| OLD | NEW |