| 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 "content/test/net/url_request_mock_http_job.h" | 5 #include "content/test/net/url_request_mock_http_job.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| 11 #include "base/threading/sequenced_worker_pool.h" | 11 #include "base/threading/sequenced_worker_pool.h" |
| 12 #include "base/threading/thread_restrictions.h" | 12 #include "base/threading/thread_restrictions.h" |
| 13 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
| 14 #include "content/public/common/url_constants.h" | 14 #include "content/public/common/url_constants.h" |
| 15 #include "net/base/net_util.h" | 15 #include "net/base/filename_util.h" |
| 16 #include "net/http/http_response_headers.h" | 16 #include "net/http/http_response_headers.h" |
| 17 #include "net/url_request/url_request_filter.h" | 17 #include "net/url_request/url_request_filter.h" |
| 18 | 18 |
| 19 const char kMockHostname[] = "mock.http"; | 19 const char kMockHostname[] = "mock.http"; |
| 20 const base::FilePath::CharType kMockHeaderFileSuffix[] = | 20 const base::FilePath::CharType kMockHeaderFileSuffix[] = |
| 21 FILE_PATH_LITERAL(".mock-http-headers"); | 21 FILE_PATH_LITERAL(".mock-http-headers"); |
| 22 | 22 |
| 23 namespace content { | 23 namespace content { |
| 24 | 24 |
| 25 namespace { | 25 namespace { |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 return net::URLRequestJob::GetResponseCode(); | 180 return net::URLRequestJob::GetResponseCode(); |
| 181 } | 181 } |
| 182 | 182 |
| 183 bool URLRequestMockHTTPJob::GetCharset(std::string* charset) { | 183 bool URLRequestMockHTTPJob::GetCharset(std::string* charset) { |
| 184 net::HttpResponseInfo info; | 184 net::HttpResponseInfo info; |
| 185 GetResponseInfo(&info); | 185 GetResponseInfo(&info); |
| 186 return info.headers.get() && info.headers->GetCharset(charset); | 186 return info.headers.get() && info.headers->GetCharset(charset); |
| 187 } | 187 } |
| 188 | 188 |
| 189 } // namespace content | 189 } // namespace content |
| OLD | NEW |