| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/browser/blob/blob_url_request_job_factory.h" | 5 #include "webkit/browser/blob/blob_url_request_job_factory.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/message_loop/message_loop_proxy.h" | 9 #include "base/message_loop/message_loop_proxy.h" |
| 10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 // static | 43 // static |
| 44 void BlobProtocolHandler::SetRequestedBlobDataHandle( | 44 void BlobProtocolHandler::SetRequestedBlobDataHandle( |
| 45 net::URLRequest* request, | 45 net::URLRequest* request, |
| 46 scoped_ptr<BlobDataHandle> blob_data_handle) { | 46 scoped_ptr<BlobDataHandle> blob_data_handle) { |
| 47 request->SetUserData(&kUserDataKey, blob_data_handle.release()); | 47 request->SetUserData(&kUserDataKey, blob_data_handle.release()); |
| 48 } | 48 } |
| 49 | 49 |
| 50 BlobProtocolHandler::BlobProtocolHandler( | 50 BlobProtocolHandler::BlobProtocolHandler( |
| 51 BlobStorageContext* context, | 51 BlobStorageContext* context, |
| 52 storage::FileSystemContext* file_system_context, | 52 storage::FileSystemContext* file_system_context, |
| 53 base::MessageLoopProxy* loop_proxy) | 53 const scoped_refptr<base::MessageLoopProxy>& loop_proxy) |
| 54 : file_system_context_(file_system_context), file_loop_proxy_(loop_proxy) { | 54 : file_system_context_(file_system_context), file_loop_proxy_(loop_proxy) { |
| 55 if (context) | 55 if (context) |
| 56 context_ = context->AsWeakPtr(); | 56 context_ = context->AsWeakPtr(); |
| 57 } | 57 } |
| 58 | 58 |
| 59 BlobProtocolHandler::~BlobProtocolHandler() { | 59 BlobProtocolHandler::~BlobProtocolHandler() { |
| 60 } | 60 } |
| 61 | 61 |
| 62 net::URLRequestJob* BlobProtocolHandler::MaybeCreateJob( | 62 net::URLRequestJob* BlobProtocolHandler::MaybeCreateJob( |
| 63 net::URLRequest* request, net::NetworkDelegate* network_delegate) const { | 63 net::URLRequest* request, net::NetworkDelegate* network_delegate) const { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 81 // impl that does not depend on urlfetching to perform this function. | 81 // impl that does not depend on urlfetching to perform this function. |
| 82 const std::string kPrefix("blob:uuid/"); | 82 const std::string kPrefix("blob:uuid/"); |
| 83 if (!StartsWithASCII(request->url().spec(), kPrefix, true)) | 83 if (!StartsWithASCII(request->url().spec(), kPrefix, true)) |
| 84 return NULL; | 84 return NULL; |
| 85 std::string uuid = request->url().spec().substr(kPrefix.length()); | 85 std::string uuid = request->url().spec().substr(kPrefix.length()); |
| 86 scoped_ptr<BlobDataHandle> handle = context_->GetBlobDataFromUUID(uuid); | 86 scoped_ptr<BlobDataHandle> handle = context_->GetBlobDataFromUUID(uuid); |
| 87 return handle.get() ? handle->data() : NULL; | 87 return handle.get() ? handle->data() : NULL; |
| 88 } | 88 } |
| 89 | 89 |
| 90 } // namespace storage | 90 } // namespace storage |
| OLD | NEW |