| Index: content/browser/indexed_db/indexed_db_thread.cc
|
| diff --git a/content/common/font_list_android.cc b/content/browser/indexed_db/indexed_db_thread.cc
|
| similarity index 53%
|
| copy from content/common/font_list_android.cc
|
| copy to content/browser/indexed_db/indexed_db_thread.cc
|
| index c296657244358a67576465c2da597c3326ce039d..0672717e4a3312d3cdfd52e11a03a421fa60561c 100644
|
| --- a/content/common/font_list_android.cc
|
| +++ b/content/browser/indexed_db/indexed_db_thread.cc
|
| @@ -2,14 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/common/font_list.h"
|
| -
|
| -#include "base/values.h"
|
| +#include "content/browser/indexed_db/indexed_db_thread.h"
|
|
|
| namespace content {
|
|
|
| -scoped_ptr<ListValue> GetFontList_SlowBlocking() {
|
| - return scoped_ptr<ListValue>(new ListValue);
|
| +IndexedDBThread::IndexedDBThread() : thread_(new base::Thread("IndexedDB")) {
|
| + thread_->Start();
|
| }
|
|
|
| +IndexedDBThread::~IndexedDBThread() {}
|
| +
|
| } // namespace content
|
|
|