Chromium Code Reviews| 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 #ifndef CONTENT_TEST_TEST_URL_FETCHER_FACTORY_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_TEST_URL_FETCHER_FACTORY_H_ |
|
Paweł Hajdan Jr.
2012/06/18 15:29:17
nit: Shouldn't contents of this header be in the c
| |
| 6 #define CONTENT_TEST_TEST_URL_FETCHER_FACTORY_H_ | 6 #define CONTENT_PUBLIC_TEST_TEST_URL_FETCHER_FACTORY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <list> | 9 #include <list> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <utility> | 12 #include <utility> |
| 13 | 13 |
| 14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
| 15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 16 #include "net/http/http_request_headers.h" | 16 #include "net/http/http_request_headers.h" |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 283 | 283 |
| 284 // This method will create a real URLFetcher. | 284 // This method will create a real URLFetcher. |
| 285 virtual net::URLFetcher* CreateURLFetcher( | 285 virtual net::URLFetcher* CreateURLFetcher( |
| 286 int id, | 286 int id, |
| 287 const GURL& url, | 287 const GURL& url, |
| 288 net::URLFetcher::RequestType request_type, | 288 net::URLFetcher::RequestType request_type, |
| 289 net::URLFetcherDelegate* d) OVERRIDE; | 289 net::URLFetcherDelegate* d) OVERRIDE; |
| 290 | 290 |
| 291 }; | 291 }; |
| 292 | 292 |
| 293 #endif // CONTENT_TEST_TEST_URL_FETCHER_FACTORY_H_ | 293 #endif // CONTENT_PUBLIC_TEST_TEST_URL_FETCHER_FACTORY_H_ |
| OLD | NEW |