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

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

Issue 2986002: More header cleanup: (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: mac compile fixes (tested locally) Created 10 years, 5 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 | « webkit/glue/webmediaplayer_impl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2009 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 // An implementation of WebURLLoader in terms of ResourceLoaderBridge. 5 // An implementation of WebURLLoader in terms of ResourceLoaderBridge.
6 6
7 #include "webkit/glue/weburlloader_impl.h" 7 #include "webkit/glue/weburlloader_impl.h"
8 8
9 #include "base/file_path.h" 9 #include "base/file_path.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/process_util.h" 11 #include "base/process_util.h"
12 #include "base/scoped_ptr.h"
12 #include "base/string_util.h" 13 #include "base/string_util.h"
13 #include "base/time.h" 14 #include "base/time.h"
14 #include "net/base/data_url.h" 15 #include "net/base/data_url.h"
15 #include "net/base/load_flags.h" 16 #include "net/base/load_flags.h"
16 #include "net/base/net_errors.h" 17 #include "net/base/net_errors.h"
17 #include "net/base/net_util.h" 18 #include "net/base/net_util.h"
18 #include "net/http/http_response_headers.h" 19 #include "net/http/http_response_headers.h"
19 #include "third_party/WebKit/WebKit/chromium/public/WebHTTPHeaderVisitor.h" 20 #include "third_party/WebKit/WebKit/chromium/public/WebHTTPHeaderVisitor.h"
20 #include "third_party/WebKit/WebKit/chromium/public/WebSecurityPolicy.h" 21 #include "third_party/WebKit/WebKit/chromium/public/WebSecurityPolicy.h"
21 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" 22 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h"
(...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 654
654 void WebURLLoaderImpl::cancel() { 655 void WebURLLoaderImpl::cancel() {
655 context_->Cancel(); 656 context_->Cancel();
656 } 657 }
657 658
658 void WebURLLoaderImpl::setDefersLoading(bool value) { 659 void WebURLLoaderImpl::setDefersLoading(bool value) {
659 context_->SetDefersLoading(value); 660 context_->SetDefersLoading(value);
660 } 661 }
661 662
662 } // namespace webkit_glue 663 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/webmediaplayer_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698