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

Side by Side Diff: webkit/glue/weburlrequest_impl.cc

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "config.h" 5 #include "config.h"
6 #include "base/compiler_specific.h" 6 #include "base/compiler_specific.h"
7 7
8 MSVC_PUSH_WARNING_LEVEL(0); 8 MSVC_PUSH_WARNING_LEVEL(0);
9 #include "FormData.h" 9 #include "FormData.h"
10 #include "HTTPHeaderMap.h" 10 #include "HTTPHeaderMap.h"
11 #include "ResourceRequest.h" 11 #include "ResourceRequest.h"
12 MSVC_POP_WARNING(); 12 MSVC_POP_WARNING();
13 13
14 #undef LOG 14 #undef LOG
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "googleurl/src/gurl.h"
16 #include "net/base/upload_data.h" 17 #include "net/base/upload_data.h"
17 #include "webkit/glue/weburlrequest_impl.h" 18 #include "webkit/glue/weburlrequest_impl.h"
18 #include "webkit/glue/glue_serialize.h" 19 #include "webkit/glue/glue_serialize.h"
19 #include "webkit/glue/glue_util.h" 20 #include "webkit/glue/glue_util.h"
20 21
21 using WebCore::FrameLoadRequest; 22 using WebCore::FrameLoadRequest;
22 using WebCore::ResourceRequestCachePolicy; 23 using WebCore::ResourceRequestCachePolicy;
23 using WebCore::String; 24 using WebCore::String;
24 25
25 // WebRequest ----------------------------------------------------------------- 26 // WebRequest -----------------------------------------------------------------
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 } 200 }
200 201
201 request_.resourceRequest().setHTTPBody(formdata); 202 request_.resourceRequest().setHTTPBody(formdata);
202 } 203 }
203 204
204 // static 205 // static
205 WebRequest* WebRequest::Create(const GURL& url) { 206 WebRequest* WebRequest::Create(const GURL& url) {
206 return new WebRequestImpl(url); 207 return new WebRequestImpl(url);
207 } 208 }
208 209
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698