| OLD | NEW |
| 1 // Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 |
| 4 #ifndef CHROME_FRAME_TEST_PROXY_FACTORY_MOCK_H_ | 5 #ifndef CHROME_FRAME_TEST_PROXY_FACTORY_MOCK_H_ |
| 5 #define CHROME_FRAME_TEST_PROXY_FACTORY_MOCK_H_ | 6 #define CHROME_FRAME_TEST_PROXY_FACTORY_MOCK_H_ |
| 6 | 7 |
| 7 #include <windows.h> | 8 #include <windows.h> |
| 8 #include <string> | 9 #include <string> |
| 9 | 10 |
| 10 #include "gmock/gmock.h" | 11 #include "gmock/gmock.h" |
| 11 #include "chrome_frame/chrome_frame_automation.h" | 12 #include "chrome_frame/chrome_frame_automation.h" |
| 12 | 13 |
| 13 struct LaunchDelegateMock : public LaunchDelegate { | 14 struct LaunchDelegateMock : public LaunchDelegate { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 38 ChromeFrameLaunchParams* params, | 39 ChromeFrameLaunchParams* params, |
| 39 void** automation_server_id); | 40 void** automation_server_id); |
| 40 | 41 |
| 41 base::Thread thread_; | 42 base::Thread thread_; |
| 42 MessageLoop* loop_; | 43 MessageLoop* loop_; |
| 43 }; | 44 }; |
| 44 | 45 |
| 45 | 46 |
| 46 #endif // CHROME_FRAME_TEST_PROXY_FACTORY_MOCK_H_ | 47 #endif // CHROME_FRAME_TEST_PROXY_FACTORY_MOCK_H_ |
| 47 | 48 |
| OLD | NEW |