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

Side by Side Diff: content/public/test/test_url_fetcher_factory.h

Issue 10483003: Move the rest of the content\test headers that are used by embedders to content\public\test. This w… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
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 #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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698