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

Side by Side Diff: content/child/web_url_request_util.h

Issue 942963003: Cleanup: Fix content header include guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 9 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
« no previous file with comments | « content/child/threaded_data_provider.h ('k') | content/child/webblobregistry_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHILD_TARGET_TYPE_CONVERSION_H_ 5 #ifndef CONTENT_CHILD_WEB_URL_REQUEST_UTIL_H_
6 #define CONTENT_CHILD_TARGET_TYPE_CONVERSION_H_ 6 #define CONTENT_CHILD_WEB_URL_REQUEST_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/common/resource_request_body.h" 11 #include "content/common/resource_request_body.h"
12 #include "content/public/common/resource_type.h" 12 #include "content/public/common/resource_type.h"
13 13
14 namespace blink { 14 namespace blink {
15 class WebURLRequest; 15 class WebURLRequest;
16 } 16 }
17 17
18 namespace content { 18 namespace content {
19 19
20 CONTENT_EXPORT ResourceType WebURLRequestToResourceType( 20 CONTENT_EXPORT ResourceType WebURLRequestToResourceType(
21 const blink::WebURLRequest& request); 21 const blink::WebURLRequest& request);
22 22
23 std::string GetWebURLRequestHeaders(const blink::WebURLRequest& request); 23 std::string GetWebURLRequestHeaders(const blink::WebURLRequest& request);
24 24
25 int GetLoadFlagsForWebURLRequest(const blink::WebURLRequest& request); 25 int GetLoadFlagsForWebURLRequest(const blink::WebURLRequest& request);
26 26
27 // Takes a WebURLRequest and sets the appropriate information 27 // Takes a WebURLRequest and sets the appropriate information
28 // in a ResourceRequestBody structure. Returns an empty scoped_refptr 28 // in a ResourceRequestBody structure. Returns an empty scoped_refptr
29 // if the request body is not present. 29 // if the request body is not present.
30 scoped_refptr<ResourceRequestBody> GetRequestBodyForWebURLRequest( 30 scoped_refptr<ResourceRequestBody> GetRequestBodyForWebURLRequest(
31 const blink::WebURLRequest& request); 31 const blink::WebURLRequest& request);
32 32
33 } // namespace content 33 } // namespace content
34 34
35 #endif // CONTENT_CHILD_TARGET_TYPE_CONVERSION_H_ 35 #endif // CONTENT_CHILD_WEB_URL_REQUEST_UTIL_H_
OLDNEW
« no previous file with comments | « content/child/threaded_data_provider.h ('k') | content/child/webblobregistry_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698