Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Unified Diff: content/browser/indexed_db/indexed_db_thread.cc

Issue 17518004: Move IndexedDB from WEBKIT_DEPRECATED to dedicated thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing files Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698