| Index: storage/browser/blob/blob_data_handle.cc
|
| diff --git a/webkit/browser/blob/blob_data_handle.cc b/storage/browser/blob/blob_data_handle.cc
|
| similarity index 86%
|
| rename from webkit/browser/blob/blob_data_handle.cc
|
| rename to storage/browser/blob/blob_data_handle.cc
|
| index 8ccba746c2bb4f6562f44cd8b1a02f8c34846a1d..9f4e7faa139d50ce4dc30428b2ac1433529fff59 100644
|
| --- a/webkit/browser/blob/blob_data_handle.cc
|
| +++ b/storage/browser/blob/blob_data_handle.cc
|
| @@ -2,23 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "webkit/browser/blob/blob_data_handle.h"
|
| +#include "storage/browser/blob/blob_data_handle.h"
|
|
|
| #include "base/bind.h"
|
| #include "base/location.h"
|
| #include "base/logging.h"
|
| #include "base/sequenced_task_runner.h"
|
| -#include "webkit/browser/blob/blob_storage_context.h"
|
| -#include "webkit/common/blob/blob_data.h"
|
| +#include "storage/browser/blob/blob_storage_context.h"
|
| +#include "storage/common/blob/blob_data.h"
|
|
|
| -namespace webkit_blob {
|
| +namespace storage {
|
|
|
| BlobDataHandle::BlobDataHandleShared::BlobDataHandleShared(
|
| BlobData* blob_data,
|
| BlobStorageContext* context,
|
| base::SequencedTaskRunner* task_runner)
|
| - : blob_data_(blob_data),
|
| - context_(context->AsWeakPtr()) {
|
| + : blob_data_(blob_data), context_(context->AsWeakPtr()) {
|
| context_->IncrementBlobRefCount(blob_data->uuid());
|
| }
|
|
|
| @@ -65,4 +64,4 @@ std::string BlobDataHandle::uuid() const {
|
| return shared_->uuid();
|
| }
|
|
|
| -} // namespace webkit_blob
|
| +} // namespace storage
|
|
|