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

Side by Side Diff: webkit/appcache/appcache_request_handler.cc

Issue 517054: Remove all uses of EmptyString16(), EmptyWString(), and EmptyGURL(), and thei... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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
« no previous file with comments | « webkit/appcache/appcache_host_unittest.cc ('k') | webkit/appcache/appcache_storage_impl.cc » ('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 (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "webkit/appcache/appcache_request_handler.h" 5 #include "webkit/appcache/appcache_request_handler.h"
6 6
7 #include "net/url_request/url_request.h" 7 #include "net/url_request/url_request.h"
8 #include "net/url_request/url_request_job.h" 8 #include "net/url_request/url_request_job.h"
9 #include "webkit/appcache/appcache.h" 9 #include "webkit/appcache/appcache.h"
10 #include "webkit/appcache/appcache_url_request_job.h" 10 #include "webkit/appcache/appcache_url_request_job.h"
11 11
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 DCHECK(job_->is_delivering_network_response()); 56 DCHECK(job_->is_delivering_network_response());
57 job_ = NULL; 57 job_ = NULL;
58 return NULL; 58 return NULL;
59 } 59 }
60 60
61 // Clear out our 'found' fields since we're starting a request for a 61 // Clear out our 'found' fields since we're starting a request for a
62 // new resource, any values in those fields are no longer valid. 62 // new resource, any values in those fields are no longer valid.
63 found_entry_ = AppCacheEntry(); 63 found_entry_ = AppCacheEntry();
64 found_fallback_entry_ = AppCacheEntry(); 64 found_fallback_entry_ = AppCacheEntry();
65 found_cache_id_ = kNoCacheId; 65 found_cache_id_ = kNoCacheId;
66 found_manifest_url_ = GURL::EmptyGURL(); 66 found_manifest_url_ = GURL();
67 found_network_namespace_ = false; 67 found_network_namespace_ = false;
68 68
69 if (is_main_request_) 69 if (is_main_request_)
70 MaybeLoadMainResource(request); 70 MaybeLoadMainResource(request);
71 else 71 else
72 MaybeLoadSubResource(request); 72 MaybeLoadSubResource(request);
73 73
74 // If its been setup to deliver a network response, we can just delete 74 // If its been setup to deliver a network response, we can just delete
75 // it now and return NULL instead to achieve that since it couldn't 75 // it now and return NULL instead to achieve that since it couldn't
76 // have been started yet. 76 // have been started yet.
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 if (!host_->associated_cache() || 300 if (!host_->associated_cache() ||
301 !host_->associated_cache()->is_complete()) { 301 !host_->associated_cache()->is_complete()) {
302 DeliverNetworkResponse(); 302 DeliverNetworkResponse();
303 return; 303 return;
304 } 304 }
305 305
306 ContinueMaybeLoadSubResource(); 306 ContinueMaybeLoadSubResource();
307 } 307 }
308 308
309 } // namespace appcache 309 } // namespace appcache
OLDNEW
« no previous file with comments | « webkit/appcache/appcache_host_unittest.cc ('k') | webkit/appcache/appcache_storage_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698