Chromium Code Reviews| Index: content/browser/renderer_host/pepper/pepper_file_io_host.cc |
| diff --git a/content/browser/renderer_host/pepper/pepper_file_io_host.cc b/content/browser/renderer_host/pepper/pepper_file_io_host.cc |
| index e031eb1dad8234ebb033e961cd4c068c906bd08d..7a5e5d9ae1185650745aa176f3722cd0152b70e1 100644 |
| --- a/content/browser/renderer_host/pepper/pepper_file_io_host.cc |
| +++ b/content/browser/renderer_host/pepper/pepper_file_io_host.cc |
| @@ -109,7 +109,9 @@ PepperFileIOHost::PepperFileIOHost(BrowserPpapiHostImpl* host, |
| : ResourceHost(host->GetPpapiHost(), instance, resource), |
| browser_ppapi_host_(host), |
| render_process_host_(NULL), |
| - file_(BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE)), |
| + // TODO(dcheng): This seems sketchy. Does this not need to be ref'ed? |
| + file_(BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE) |
|
dcheng
2014/08/28 16:40:16
Do we need to ref this? Most other places seem to
raymes
2014/08/29 01:12:45
It looks like the base::FileProxy holds a ref, so
dcheng
2014/08/29 06:38:01
OK I've removed this comment then.
|
| + .get()), |
| open_flags_(0), |
| file_system_type_(PP_FILESYSTEMTYPE_INVALID), |
| max_written_offset_(0), |