OLD | NEW |
1 // Copyright (c) 2012 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 |
5 #include "base/base_switches.h" | 5 #include "base/base_switches.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "chrome/browser/extensions/api/page_capture/page_capture_api.h" | 7 #include "chrome/browser/extensions/api/page_capture/page_capture_api.h" |
8 #include "chrome/browser/extensions/extension_apitest.h" | 8 #include "chrome/browser/extensions/extension_apitest.h" |
9 #include "chrome/common/chrome_switches.h" | 9 #include "chrome/common/chrome_switches.h" |
10 #include "chrome/test/base/ui_test_utils.h" | 10 #include "chrome/test/base/ui_test_utils.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 | 41 |
42 IN_PROC_BROWSER_TEST_F(ExtensionPageCaptureApiTest, SaveAsMHTML) { | 42 IN_PROC_BROWSER_TEST_F(ExtensionPageCaptureApiTest, SaveAsMHTML) { |
43 host_resolver()->AddRule("www.a.com", "127.0.0.1"); | 43 host_resolver()->AddRule("www.a.com", "127.0.0.1"); |
44 ASSERT_TRUE(StartEmbeddedTestServer()); | 44 ASSERT_TRUE(StartEmbeddedTestServer()); |
45 PageCaptureSaveAsMHTMLDelegate delegate; | 45 PageCaptureSaveAsMHTMLDelegate delegate; |
46 ASSERT_TRUE(RunExtensionTest("page_capture")) << message_; | 46 ASSERT_TRUE(RunExtensionTest("page_capture")) << message_; |
47 ASSERT_FALSE(delegate.temp_file_.empty()); | 47 ASSERT_FALSE(delegate.temp_file_.empty()); |
48 // Flush the message loops to make sure the delete happens. | 48 // Flush the message loops to make sure the delete happens. |
49 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); | 49 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); |
50 content::RunAllPendingInMessageLoop(content::BrowserThread::IO); | 50 content::RunAllPendingInMessageLoop(content::BrowserThread::IO); |
51 ASSERT_FALSE(file_util::PathExists(delegate.temp_file_)); | 51 ASSERT_FALSE(base::PathExists(delegate.temp_file_)); |
52 } | 52 } |
OLD | NEW |