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

Side by Side Diff: chrome/browser/net/file_downloader_unittest.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 months 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/files/file_path.h" 5 #include "base/files/file_path.h"
6 #include "base/files/file_util.h" 6 #include "base/files/file_util.h"
7 #include "base/files/scoped_temp_dir.h" 7 #include "base/files/scoped_temp_dir.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
11 #include "chrome/browser/net/file_downloader.h" 11 #include "chrome/browser/net/file_downloader.h"
12 #include "content/public/browser/browser_thread.h" 12 #include "content/public/browser/browser_thread.h"
13 #include "net/url_request/test_url_fetcher_factory.h" 13 #include "net/url_request/test_url_fetcher_factory.h"
14 #include "net/url_request/url_request_test_util.h" 14 #include "net/url_request/url_request_test_util.h"
15 #include "testing/gmock/include/gmock/gmock.h" 15 #include "testing/gmock/include/gmock/gmock.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "url/gurl.h" 17 #include "url/gurl.h"
18 18
19 const char kURL[] = "https://www.url.com/path"; 19 const char kURL[] = "https://www.url.com/path";
20 const char kFilename[] = "filename.ext"; 20 const char kFilename[] = "filename.ext";
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 ASSERT_TRUE(base::ReadFileToString(path(), &contents)); 121 ASSERT_TRUE(base::ReadFileToString(path(), &contents));
122 EXPECT_EQ(std::string(kFileContents1), contents); 122 EXPECT_EQ(std::string(kFileContents1), contents);
123 123
124 SetValidResponse2(); 124 SetValidResponse2();
125 Download(false, FileDownloader::EXISTS); 125 Download(false, FileDownloader::EXISTS);
126 // The file should still have the old contents. 126 // The file should still have the old contents.
127 EXPECT_TRUE(base::PathExists(path())); 127 EXPECT_TRUE(base::PathExists(path()));
128 ASSERT_TRUE(base::ReadFileToString(path(), &contents)); 128 ASSERT_TRUE(base::ReadFileToString(path(), &contents));
129 EXPECT_EQ(std::string(kFileContents1), contents); 129 EXPECT_EQ(std::string(kFileContents1), contents);
130 } 130 }
OLDNEW
« no previous file with comments | « chrome/browser/net/chrome_url_request_context_getter.cc ('k') | chrome/browser/net/nss_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698