OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 // Tests for the top plugins to catch regressions in our plugin host code, as | 5 // Tests for the top plugins to catch regressions in our plugin host code, as |
6 // well as in the out of process code. Currently this tests: | 6 // well as in the out of process code. Currently this tests: |
7 // Flash | 7 // Flash |
8 // Real | 8 // Real |
9 // QuickTime | 9 // QuickTime |
10 // Windows Media Player | 10 // Windows Media Player |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 TEST_F(PluginInstallerDownloadTest, PluginInstallerDownloadPathTest) { | 304 TEST_F(PluginInstallerDownloadTest, PluginInstallerDownloadPathTest) { |
305 MessageLoop loop(MessageLoop::TYPE_IO); | 305 MessageLoop loop(MessageLoop::TYPE_IO); |
306 Start(); | 306 Start(); |
307 loop.Run(); | 307 loop.Run(); |
308 | 308 |
309 EXPECT_TRUE(success()); | 309 EXPECT_TRUE(success()); |
310 EXPECT_TRUE(initial_download_path().BaseName().value() == | 310 EXPECT_TRUE(initial_download_path().BaseName().value() == |
311 final_download_path().BaseName().value()); | 311 final_download_path().BaseName().value()); |
312 } | 312 } |
313 #endif // defined(OS_WIN) | 313 #endif // defined(OS_WIN) |
OLD | NEW |