| Index: third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp b/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp
 | 
| deleted file mode 100644
 | 
| index f8a3fa44c9e8c17f3da31d21739e7ebb19da4284..0000000000000000000000000000000000000000
 | 
| --- a/third_party/WebKit/Source/modules/indexeddb/WebIDBCallbacksImpl.cpp
 | 
| +++ /dev/null
 | 
| @@ -1,152 +0,0 @@
 | 
| -/*
 | 
| - * Copyright (C) 2013 Google Inc. All rights reserved.
 | 
| - *
 | 
| - * Redistribution and use in source and binary forms, with or without
 | 
| - * modification, are permitted provided that the following conditions are
 | 
| - * met:
 | 
| - *
 | 
| - * 1. Redistributions of source code must retain the above copyright
 | 
| - * notice, this list of conditions and the following disclaimer.
 | 
| - *
 | 
| - * 2. Redistributions in binary form must reproduce the above
 | 
| - * copyright notice, this list of conditions and the following disclaimer
 | 
| - * in the documentation and/or other materials provided with the
 | 
| - * distribution.
 | 
| - *
 | 
| - * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS
 | 
| - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 | 
| - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 | 
| - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.
 | 
| - * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 | 
| - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 | 
| - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 | 
| - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 | 
| - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 | 
| - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 | 
| - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | 
| - */
 | 
| -
 | 
| -#include "modules/indexeddb/WebIDBCallbacksImpl.h"
 | 
| -
 | 
| -#include "core/dom/DOMException.h"
 | 
| -#include "core/inspector/InspectorInstrumentation.h"
 | 
| -#include "modules/IndexedDBNames.h"
 | 
| -#include "modules/indexeddb/IDBMetadata.h"
 | 
| -#include "modules/indexeddb/IDBRequest.h"
 | 
| -#include "modules/indexeddb/IDBValue.h"
 | 
| -#include "platform/SharedBuffer.h"
 | 
| -#include "public/platform/modules/indexeddb/WebIDBCursor.h"
 | 
| -#include "public/platform/modules/indexeddb/WebIDBDatabase.h"
 | 
| -#include "public/platform/modules/indexeddb/WebIDBDatabaseError.h"
 | 
| -#include "public/platform/modules/indexeddb/WebIDBKey.h"
 | 
| -#include "public/platform/modules/indexeddb/WebIDBValue.h"
 | 
| -#include "wtf/PtrUtil.h"
 | 
| -#include <memory>
 | 
| -
 | 
| -using blink::WebIDBCursor;
 | 
| -using blink::WebIDBDatabase;
 | 
| -using blink::WebIDBDatabaseError;
 | 
| -using blink::WebIDBKey;
 | 
| -using blink::WebIDBKeyPath;
 | 
| -using blink::WebIDBMetadata;
 | 
| -using blink::WebIDBValue;
 | 
| -using blink::WebVector;
 | 
| -
 | 
| -namespace blink {
 | 
| -
 | 
| -// static
 | 
| -std::unique_ptr<WebIDBCallbacksImpl> WebIDBCallbacksImpl::create(IDBRequest* request)
 | 
| -{
 | 
| -    return wrapUnique(new WebIDBCallbacksImpl(request));
 | 
| -}
 | 
| -
 | 
| -WebIDBCallbacksImpl::WebIDBCallbacksImpl(IDBRequest* request)
 | 
| -    : m_request(request)
 | 
| -{
 | 
| -    InspectorInstrumentation::asyncTaskScheduled(m_request->getExecutionContext(), IndexedDBNames::IndexedDB, this, true);
 | 
| -}
 | 
| -
 | 
| -WebIDBCallbacksImpl::~WebIDBCallbacksImpl()
 | 
| -{
 | 
| -    InspectorInstrumentation::asyncTaskCanceled(m_request->getExecutionContext(), this);
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onError(const WebIDBDatabaseError& error)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onError(DOMException::create(error.code(), error.message()));
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(const WebVector<WebString>& webStringList)
 | 
| -{
 | 
| -    Vector<String> stringList;
 | 
| -    for (size_t i = 0; i < webStringList.size(); ++i)
 | 
| -        stringList.append(webStringList[i]);
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(stringList);
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(WebIDBCursor* cursor, const WebIDBKey& key, const WebIDBKey& primaryKey, const WebIDBValue& value)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(wrapUnique(cursor), key, primaryKey, IDBValue::create(value));
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(WebIDBDatabase* backend, const WebIDBMetadata& metadata)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(wrapUnique(backend), IDBDatabaseMetadata(metadata));
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(key);
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(const WebIDBValue& value)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(IDBValue::create(value));
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(const WebVector<WebIDBValue>& values)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    Vector<RefPtr<IDBValue>> idbValues(values.size());
 | 
| -    for (size_t i = 0; i < values.size(); ++i)
 | 
| -        idbValues[i] = IDBValue::create(values[i]);
 | 
| -    m_request->onSuccess(idbValues);
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(long long value)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(value);
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess()
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess();
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onSuccess(const WebIDBKey& key, const WebIDBKey& primaryKey, const WebIDBValue& value)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onSuccess(key, primaryKey, IDBValue::create(value));
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onBlocked(long long oldVersion)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onBlocked(oldVersion);
 | 
| -}
 | 
| -
 | 
| -void WebIDBCallbacksImpl::onUpgradeNeeded(long long oldVersion, WebIDBDatabase* database, const WebIDBMetadata& metadata, unsigned short dataLoss, WebString dataLossMessage)
 | 
| -{
 | 
| -    InspectorInstrumentation::AsyncTask asyncTask(m_request->getExecutionContext(), this);
 | 
| -    m_request->onUpgradeNeeded(oldVersion, wrapUnique(database), IDBDatabaseMetadata(metadata), static_cast<WebIDBDataLoss>(dataLoss), dataLossMessage);
 | 
| -}
 | 
| -
 | 
| -} // namespace blink
 | 
| 
 |