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

Unified Diff: content/utility/utility_thread_impl.cc

Issue 10272018: Move IndexedDBKey, IndexedDBKeyRange into content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use "using content::*" aliasing for IDB/SSV types Created 8 years, 8 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
« no previous file with comments | « content/utility/utility_thread_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/utility_thread_impl.cc
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc
index a4b5ed1f0f2b2565bea3394bd73e431fa67cee1a..421d24a67d539b8917a3c4d96ef6bcd3feac7fad 100644
--- a/content/utility/utility_thread_impl.cc
+++ b/content/utility/utility_thread_impl.cc
@@ -101,14 +101,14 @@ void UtilityThreadImpl::OnIDBKeysFromValuesAndKeyPath(
std::vector<WebKit::WebIDBKey> web_keys;
webkit_glue::IDBKeysFromValuesAndKeyPath(
web_values, idb_key_path, &web_keys);
- std::vector<IndexedDBKey> keys;
+ std::vector<content::IndexedDBKey> keys;
ConvertVector(web_keys, &keys);
Send(new UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Succeeded(id, keys));
ReleaseProcessIfNeeded();
}
void UtilityThreadImpl::OnInjectIDBKey(
- const IndexedDBKey& key,
+ const content::IndexedDBKey& key,
const content::SerializedScriptValue& value,
const content::IndexedDBKeyPath& key_path) {
content::SerializedScriptValue new_value(
« no previous file with comments | « content/utility/utility_thread_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698