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

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

Issue 9447084: Refactor Pickle Read methods to use higher performance PickleIterator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile (racing with incoming CLs) Created 8 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 class IndexedDBKeyRange;
14 14
15 namespace content { 15 namespace content {
16 class SerializedScriptValue; 16 class SerializedScriptValue;
17 } 17 }
18 18
19 namespace IPC { 19 namespace IPC {
20 20
21 // 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.
22 // 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
23 // 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
24 // never actually used by that target). 24 // never actually used by that target).
25 25
26 template <> 26 template <>
27 struct ParamTraits<content::SerializedScriptValue> { 27 struct ParamTraits<content::SerializedScriptValue> {
28 typedef content::SerializedScriptValue param_type; 28 typedef content::SerializedScriptValue param_type;
29 static void Write(Message* m, const param_type& p); 29 static void Write(Message* m, const param_type& p);
30 static bool Read(const Message* m, void** iter, param_type* r); 30 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
31 static void Log(const param_type& p, std::string* l); 31 static void Log(const param_type& p, std::string* l);
32 }; 32 };
33 33
34 template <> 34 template <>
35 struct ParamTraits<IndexedDBKey> { 35 struct ParamTraits<IndexedDBKey> {
36 typedef IndexedDBKey param_type; 36 typedef IndexedDBKey param_type;
37 static void Write(Message* m, const param_type& p); 37 static void Write(Message* m, const param_type& p);
38 static bool Read(const Message* m, void** iter, param_type* r); 38 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
39 static void Log(const param_type& p, std::string* l); 39 static void Log(const param_type& p, std::string* l);
40 }; 40 };
41 41
42 template <> 42 template <>
43 struct ParamTraits<IndexedDBKeyRange> { 43 struct ParamTraits<IndexedDBKeyRange> {
44 typedef IndexedDBKeyRange param_type; 44 typedef IndexedDBKeyRange param_type;
45 static void Write(Message* m, const param_type& p); 45 static void Write(Message* m, const param_type& p);
46 static bool Read(const Message* m, void** iter, param_type* r); 46 static bool Read(const Message* m, PickleIterator* iter, param_type* r);
47 static void Log(const param_type& p, std::string* l); 47 static void Log(const param_type& p, std::string* l);
48 }; 48 };
49 49
50 } // namespace IPC 50 } // namespace IPC
51 51
52 #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/font_config_ipc_linux.cc ('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