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

Side by Side Diff: webkit/plugins/ppapi/ppb_url_loader_impl.cc

Issue 14695002: Remove Pepper URLLoader from resource tracker early. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move TODO to logical place. Created 7 years, 7 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 | « ppapi/shared_impl/resource.cc ('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) 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 #include "webkit/plugins/ppapi/ppb_url_loader_impl.h" 5 #include "webkit/plugins/ppapi/ppb_url_loader_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "net/base/net_errors.h" 8 #include "net/base/net_errors.h"
9 #include "ppapi/c/pp_completion_callback.h" 9 #include "ppapi/c/pp_completion_callback.h"
10 #include "ppapi/c/pp_errors.h" 10 #include "ppapi/c/pp_errors.h"
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 user_buffer_(NULL), 78 user_buffer_(NULL),
79 user_buffer_size_(0), 79 user_buffer_size_(0),
80 done_status_(PP_OK_COMPLETIONPENDING), 80 done_status_(PP_OK_COMPLETIONPENDING),
81 is_streaming_to_file_(false), 81 is_streaming_to_file_(false),
82 is_asynchronous_load_suspended_(false), 82 is_asynchronous_load_suspended_(false),
83 has_universal_access_(false), 83 has_universal_access_(false),
84 status_callback_(NULL) { 84 status_callback_(NULL) {
85 } 85 }
86 86
87 PPB_URLLoader_Impl::~PPB_URLLoader_Impl() { 87 PPB_URLLoader_Impl::~PPB_URLLoader_Impl() {
88 // There is a path whereby the destructor for the loader_ member can 88 // Removes the resource from the ResourceTracker's tables. This normally
89 // invoke InstanceWasDeleted() upon this PPB_URLLoader_Impl, thereby 89 // happens as part of Resource destruction, but if a subclass destructor
90 // re-entering the scoped_ptr destructor with the same scoped_ptr object 90 // has a risk of re-entering destruction via the ResourceTracker, it can
91 // via loader_.reset(). Be sure that loader_ is first NULL then destroy 91 // call this explicitly to get rid of the table entry before continuing
92 // the scoped_ptr. See http://crbug.com/159429. 92 // with the destruction. If the resource is not in the ResourceTracker's
93 scoped_ptr<WebKit::WebURLLoader> for_destruction_only(loader_.release()); 93 // tables, silently does nothing. See http://crbug.com/159429.
94 RemoveFromResourceTracker();
94 } 95 }
95 96
96 PPB_URLLoader_API* PPB_URLLoader_Impl::AsPPB_URLLoader_API() { 97 PPB_URLLoader_API* PPB_URLLoader_Impl::AsPPB_URLLoader_API() {
97 return this; 98 return this;
98 } 99 }
99 100
100 void PPB_URLLoader_Impl::InstanceWasDeleted() { 101 void PPB_URLLoader_Impl::InstanceWasDeleted() {
101 loader_.reset(); 102 loader_.reset();
102 } 103 }
103 104
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 bool PPB_URLLoader_Impl::RecordDownloadProgress() const { 541 bool PPB_URLLoader_Impl::RecordDownloadProgress() const {
541 return request_data_.record_download_progress; 542 return request_data_.record_download_progress;
542 } 543 }
543 544
544 bool PPB_URLLoader_Impl::RecordUploadProgress() const { 545 bool PPB_URLLoader_Impl::RecordUploadProgress() const {
545 return request_data_.record_upload_progress; 546 return request_data_.record_upload_progress;
546 } 547 }
547 548
548 } // namespace ppapi 549 } // namespace ppapi
549 } // namespace webkit 550 } // namespace webkit
OLDNEW
« no previous file with comments | « ppapi/shared_impl/resource.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698