OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 |
5 #include "chrome_frame/test/mock_ie_event_sink_test.h" | 5 #include "chrome_frame/test/mock_ie_event_sink_test.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
10 #include "chrome_frame/test/mock_ie_event_sink_actions.h" | 10 #include "chrome_frame/test/mock_ie_event_sink_actions.h" |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 | 162 |
163 ASSERT_TRUE(ie_mock_.event_sink()->web_browser2() != NULL); | 163 ASSERT_TRUE(ie_mock_.event_sink()->web_browser2() != NULL); |
164 loop_.RunFor(timeout); | 164 loop_.RunFor(timeout); |
165 } | 165 } |
166 | 166 |
167 std::wstring MockIEEventSinkTest::GetTestUrl( | 167 std::wstring MockIEEventSinkTest::GetTestUrl( |
168 const std::wstring& relative_path) { | 168 const std::wstring& relative_path) { |
169 return server_mock_.Resolve(relative_path.c_str()); | 169 return server_mock_.Resolve(relative_path.c_str()); |
170 } | 170 } |
171 | 171 |
172 } // namespace chrome_frame_test | 172 } // namespace chrome_frame_test |
| 173 |
OLD | NEW |