Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: chrome/browser/extensions/api/page_capture/page_capture_apitest.cc

Issue 687903003: Cleanup: Remove unneeded ui_test_utils.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cros Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "content/public/test/test_utils.h"
11 #include "net/dns/mock_host_resolver.h" 11 #include "net/dns/mock_host_resolver.h"
12 12
13 using extensions::PageCaptureSaveAsMHTMLFunction; 13 using extensions::PageCaptureSaveAsMHTMLFunction;
14 14
15 class ExtensionPageCaptureApiTest : public ExtensionApiTest { 15 class ExtensionPageCaptureApiTest : public ExtensionApiTest {
16 public: 16 public:
17 void SetUpCommandLine(CommandLine* command_line) override { 17 void SetUpCommandLine(CommandLine* command_line) override {
18 ExtensionApiTest::SetUpCommandLine(command_line); 18 ExtensionApiTest::SetUpCommandLine(command_line);
19 command_line->AppendSwitchASCII(switches::kJavaScriptFlags, "--expose-gc"); 19 command_line->AppendSwitchASCII(switches::kJavaScriptFlags, "--expose-gc");
20 } 20 }
(...skipping 21 matching lines...) Expand all
42 host_resolver()->AddRule("www.a.com", "127.0.0.1"); 42 host_resolver()->AddRule("www.a.com", "127.0.0.1");
43 ASSERT_TRUE(StartEmbeddedTestServer()); 43 ASSERT_TRUE(StartEmbeddedTestServer());
44 PageCaptureSaveAsMHTMLDelegate delegate; 44 PageCaptureSaveAsMHTMLDelegate delegate;
45 ASSERT_TRUE(RunExtensionTest("page_capture")) << message_; 45 ASSERT_TRUE(RunExtensionTest("page_capture")) << message_;
46 ASSERT_FALSE(delegate.temp_file_.empty()); 46 ASSERT_FALSE(delegate.temp_file_.empty());
47 // Flush the message loops to make sure the delete happens. 47 // Flush the message loops to make sure the delete happens.
48 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE); 48 content::RunAllPendingInMessageLoop(content::BrowserThread::FILE);
49 content::RunAllPendingInMessageLoop(content::BrowserThread::IO); 49 content::RunAllPendingInMessageLoop(content::BrowserThread::IO);
50 ASSERT_FALSE(base::PathExists(delegate.temp_file_)); 50 ASSERT_FALSE(base::PathExists(delegate.temp_file_));
51 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698