Chromium Code Reviews

Side by Side Diff: webkit/blob/blob_url_request_job_unittest.cc

Issue 5607004: net: Remove typedef net::URLRequestJob URLRequestJob; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 2 Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
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 <stack> 5 #include <stack>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/scoped_temp_dir.h" 10 #include "base/scoped_temp_dir.h"
(...skipping 132 matching lines...)
143 143
144 io_thread_.reset(new base::Thread("BlobRLRequestJobTest Thread")); 144 io_thread_.reset(new base::Thread("BlobRLRequestJobTest Thread"));
145 base::Thread::Options options(MessageLoop::TYPE_IO, 0); 145 base::Thread::Options options(MessageLoop::TYPE_IO, 0);
146 io_thread_->StartWithOptions(options); 146 io_thread_->StartWithOptions(options);
147 } 147 }
148 148
149 void TearDown() { 149 void TearDown() {
150 io_thread_.reset(NULL); 150 io_thread_.reset(NULL);
151 } 151 }
152 152
153 static URLRequestJob* BlobURLRequestJobFactory(net::URLRequest* request, 153 static net::URLRequestJob* BlobURLRequestJobFactory(
154 const std::string& scheme) { 154 net::URLRequest* request,
155 const std::string& scheme) {
155 BlobURLRequestJob* temp = blob_url_request_job_; 156 BlobURLRequestJob* temp = blob_url_request_job_;
156 blob_url_request_job_ = NULL; 157 blob_url_request_job_ = NULL;
157 return temp; 158 return temp;
158 } 159 }
159 160
160 BlobURLRequestJobTest() 161 BlobURLRequestJobTest()
161 : expected_status_code_(0) { 162 : expected_status_code_(0) {
162 } 163 }
163 164
164 template <class Method> 165 template <class Method>
(...skipping 274 matching lines...)
439 440
440 TEST_F(BlobURLRequestJobTest, TestExtraHeaders) { 441 TEST_F(BlobURLRequestJobTest, TestExtraHeaders) {
441 RunTestOnIOThread(&BlobURLRequestJobTest::TestExtraHeaders); 442 RunTestOnIOThread(&BlobURLRequestJobTest::TestExtraHeaders);
442 } 443 }
443 444
444 } // namespace webkit_blob 445 } // namespace webkit_blob
445 446
446 // BlobURLRequestJobTest is expected to always live longer than the 447 // BlobURLRequestJobTest is expected to always live longer than the
447 // runnable methods. This lets us call NewRunnableMethod on its instances. 448 // runnable methods. This lets us call NewRunnableMethod on its instances.
448 DISABLE_RUNNABLE_METHOD_REFCOUNT(webkit_blob::BlobURLRequestJobTest); 449 DISABLE_RUNNABLE_METHOD_REFCOUNT(webkit_blob::BlobURLRequestJobTest);
OLDNEW
« no previous file with comments | « webkit/blob/blob_url_request_job.cc ('k') | webkit/tools/test_shell/simple_resource_loader_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine