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

Side by Side Diff: content/utility/utility_thread_impl.cc

Issue 8980002: Move indexeddb code to its own directory inside of content/{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/utility/utility_thread_impl.h" 5 #include "content/utility/utility_thread_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
11 #include "base/memory/scoped_vector.h" 11 #include "base/memory/scoped_vector.h"
12 #include "content/common/child_process.h" 12 #include "content/common/child_process.h"
13 #include "content/common/child_process_messages.h" 13 #include "content/common/child_process_messages.h"
14 #include "content/common/indexed_db_key.h" 14 #include "content/common/indexed_db/indexed_db_key.h"
15 #include "content/common/utility_messages.h" 15 #include "content/common/utility_messages.h"
16 #include "content/common/webkitplatformsupport_impl.h" 16 #include "content/common/webkitplatformsupport_impl.h"
17 #include "content/public/utility/content_utility_client.h" 17 #include "content/public/utility/content_utility_client.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h" 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBKey.h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize dScriptValue.h" 20 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSerialize dScriptValue.h"
21 #include "webkit/glue/idb_bindings.h" 21 #include "webkit/glue/idb_bindings.h"
22 #include "webkit/plugins/npapi/plugin_list.h" 22 #include "webkit/plugins/npapi/plugin_list.h"
23 23
24 #if defined(TOOLKIT_USES_GTK) 24 #if defined(TOOLKIT_USES_GTK)
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 const webkit::npapi::PluginGroup* group = plugin_groups[0]; 154 const webkit::npapi::PluginGroup* group = plugin_groups[0];
155 DCHECK_EQ(group->web_plugin_infos().size(), 1u); 155 DCHECK_EQ(group->web_plugin_infos().size(), 1u);
156 156
157 Send(new UtilityHostMsg_LoadedPlugin(i, group->web_plugin_infos().front())); 157 Send(new UtilityHostMsg_LoadedPlugin(i, group->web_plugin_infos().front()));
158 } 158 }
159 159
160 ReleaseProcessIfNeeded(); 160 ReleaseProcessIfNeeded();
161 } 161 }
162 #endif 162 #endif
163
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698