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

Side by Side Diff: chrome/browser/utility_process_host.cc

Issue 3297011: Removes indexed_db_param_traits.h depedencies on WebKit headers. (Closed)
Patch Set: Comments Created 10 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "chrome/browser/utility_process_host.h" 5 #include "chrome/browser/utility_process_host.h"
6 6
7 #include "app/app_switches.h" 7 #include "app/app_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "chrome/browser/browser_process.h" 12 #include "chrome/browser/browser_process.h"
13 #include "chrome/common/chrome_switches.h" 13 #include "chrome/common/chrome_switches.h"
14 #include "chrome/common/indexed_db_key.h"
14 #include "chrome/common/utility_messages.h" 15 #include "chrome/common/utility_messages.h"
15 #include "ipc/ipc_switches.h" 16 #include "ipc/ipc_switches.h"
16 #include "third_party/skia/include/core/SkBitmap.h" 17 #include "third_party/skia/include/core/SkBitmap.h"
17 18
18 UtilityProcessHost::UtilityProcessHost(ResourceDispatcherHost* rdh, 19 UtilityProcessHost::UtilityProcessHost(ResourceDispatcherHost* rdh,
19 Client* client, 20 Client* client,
20 ChromeThread::ID client_thread_id) 21 ChromeThread::ID client_thread_id)
21 : BrowserChildProcessHost(UTILITY_PROCESS, rdh), 22 : BrowserChildProcessHost(UTILITY_PROCESS, rdh),
22 client_(client), 23 client_(client),
23 client_thread_id_(client_thread_id), 24 client_thread_id_(client_thread_id),
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 IPC_MESSAGE_HANDLER(UtilityHostMsg_DecodeImage_Succeeded, 189 IPC_MESSAGE_HANDLER(UtilityHostMsg_DecodeImage_Succeeded,
189 Client::OnDecodeImageSucceeded) 190 Client::OnDecodeImageSucceeded)
190 IPC_MESSAGE_HANDLER(UtilityHostMsg_DecodeImage_Failed, 191 IPC_MESSAGE_HANDLER(UtilityHostMsg_DecodeImage_Failed,
191 Client::OnDecodeImageFailed) 192 Client::OnDecodeImageFailed)
192 IPC_MESSAGE_HANDLER(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Succeeded, 193 IPC_MESSAGE_HANDLER(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Succeeded,
193 Client::OnIDBKeysFromValuesAndKeyPathSucceeded) 194 Client::OnIDBKeysFromValuesAndKeyPathSucceeded)
194 IPC_MESSAGE_HANDLER(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Failed, 195 IPC_MESSAGE_HANDLER(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Failed,
195 Client::OnIDBKeysFromValuesAndKeyPathFailed) 196 Client::OnIDBKeysFromValuesAndKeyPathFailed)
196 IPC_END_MESSAGE_MAP_EX() 197 IPC_END_MESSAGE_MAP_EX()
197 } 198 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698