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

Side by Side Diff: content/common/indexed_db/indexed_db_param_traits.h

Issue 9389025: IndexedDB: Implement IPC plumbing for IDBObjectStore.delete(IDBKeyRange) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename to avoid overloading, remove bad includes Created 8 years, 10 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 | 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 #ifndef CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_ 5 #ifndef CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_
6 #define CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_ 6 #define CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_
7 #pragma once 7 #pragma once
8 8
9 #include "ipc/ipc_message.h" 9 #include "ipc/ipc_message.h"
10 #include "ipc/ipc_param_traits.h" 10 #include "ipc/ipc_param_traits.h"
11 11
12 class IndexedDBKey; 12 class IndexedDBKey;
13 class IndexedDBKeyRange;
13 14
14 namespace content { 15 namespace content {
15 class SerializedScriptValue; 16 class SerializedScriptValue;
16 } 17 }
17 18
18 namespace IPC { 19 namespace IPC {
19 20
20 // These datatypes are used by utility_messages.h and render_messages.h. 21 // These datatypes are used by utility_messages.h and render_messages.h.
21 // Unfortunately we can't move it to common: MSVC linker complains about 22 // Unfortunately we can't move it to common: MSVC linker complains about
22 // WebKit datatypes that are not linked on npchrome_frame (even though it's 23 // WebKit datatypes that are not linked on npchrome_frame (even though it's
23 // never actually used by that target). 24 // never actually used by that target).
24 25
25 template <> 26 template <>
26 struct ParamTraits<content::SerializedScriptValue> { 27 struct ParamTraits<content::SerializedScriptValue> {
27 typedef content::SerializedScriptValue param_type; 28 typedef content::SerializedScriptValue param_type;
28 static void Write(Message* m, const param_type& p); 29 static void Write(Message* m, const param_type& p);
29 static bool Read(const Message* m, void** iter, param_type* r); 30 static bool Read(const Message* m, void** iter, param_type* r);
30 static void Log(const param_type& p, std::string* l); 31 static void Log(const param_type& p, std::string* l);
31 }; 32 };
32 33
33 template <> 34 template <>
34 struct ParamTraits<IndexedDBKey> { 35 struct ParamTraits<IndexedDBKey> {
35 typedef IndexedDBKey param_type; 36 typedef IndexedDBKey param_type;
36 static void Write(Message* m, const param_type& p); 37 static void Write(Message* m, const param_type& p);
37 static bool Read(const Message* m, void** iter, param_type* r); 38 static bool Read(const Message* m, void** iter, param_type* r);
38 static void Log(const param_type& p, std::string* l); 39 static void Log(const param_type& p, std::string* l);
39 }; 40 };
40 41
42 template <>
43 struct ParamTraits<IndexedDBKeyRange> {
44 typedef IndexedDBKeyRange param_type;
45 static void Write(Message* m, const param_type& p);
46 static bool Read(const Message* m, void** iter, param_type* r);
47 static void Log(const param_type& p, std::string* l);
48 };
49
41 } // namespace IPC 50 } // namespace IPC
42 51
43 #endif // CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_ 52 #endif // CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_messages.h ('k') | content/common/indexed_db/indexed_db_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698