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

Side by Side Diff: gpu/ipc/gpu_command_buffer_traits.cc

Issue 818833004: Remove deprecated methods from Pickle. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 12 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 | « extensions/renderer/user_script_set.cc ('k') | ipc/ipc_channel_posix.cc » ('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) 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 #include "gpu/ipc/gpu_command_buffer_traits.h" 5 #include "gpu/ipc/gpu_command_buffer_traits.h"
6 6
7 #include "gpu/command_buffer/common/mailbox_holder.h" 7 #include "gpu/command_buffer/common/mailbox_holder.h"
8 #include "gpu/command_buffer/common/value_state.h" 8 #include "gpu/command_buffer/common/value_state.h"
9 9
10 // Generate param traits write methods. 10 // Generate param traits write methods.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 56 }
57 57
58 void ParamTraits<gpu::Mailbox>::Write(Message* m, const param_type& p) { 58 void ParamTraits<gpu::Mailbox>::Write(Message* m, const param_type& p) {
59 m->WriteBytes(p.name, sizeof(p.name)); 59 m->WriteBytes(p.name, sizeof(p.name));
60 } 60 }
61 61
62 bool ParamTraits<gpu::Mailbox>::Read(const Message* m, 62 bool ParamTraits<gpu::Mailbox>::Read(const Message* m,
63 PickleIterator* iter, 63 PickleIterator* iter,
64 param_type* p) { 64 param_type* p) {
65 const char* bytes = NULL; 65 const char* bytes = NULL;
66 if (!m->ReadBytes(iter, &bytes, sizeof(p->name))) 66 if (!iter->ReadBytes(&bytes, sizeof(p->name)))
67 return false; 67 return false;
68 DCHECK(bytes); 68 DCHECK(bytes);
69 memcpy(p->name, bytes, sizeof(p->name)); 69 memcpy(p->name, bytes, sizeof(p->name));
70 return true; 70 return true;
71 } 71 }
72 72
73 void ParamTraits<gpu::Mailbox>::Log(const param_type& p, std::string* l) { 73 void ParamTraits<gpu::Mailbox>::Log(const param_type& p, std::string* l) {
74 for (size_t i = 0; i < sizeof(p.name); ++i) 74 for (size_t i = 0; i < sizeof(p.name); ++i)
75 *l += base::StringPrintf("%02x", p.name[i]); 75 *l += base::StringPrintf("%02x", p.name[i]);
76 } 76 }
(...skipping 22 matching lines...) Expand all
99 void ParamTraits<gpu::ValueState>::Write(Message* m, const param_type& p) { 99 void ParamTraits<gpu::ValueState>::Write(Message* m, const param_type& p) {
100 m->WriteData(reinterpret_cast<const char*>(&p), 100 m->WriteData(reinterpret_cast<const char*>(&p),
101 sizeof(gpu::ValueState)); 101 sizeof(gpu::ValueState));
102 } 102 }
103 103
104 bool ParamTraits<gpu::ValueState>::Read(const Message* m, 104 bool ParamTraits<gpu::ValueState>::Read(const Message* m,
105 PickleIterator* iter, 105 PickleIterator* iter,
106 param_type* p) { 106 param_type* p) {
107 int length; 107 int length;
108 const char* data = NULL; 108 const char* data = NULL;
109 if (!m->ReadData(iter, &data, &length) || length != sizeof(gpu::ValueState)) 109 if (!iter->ReadData(&data, &length) || length != sizeof(gpu::ValueState))
110 return false; 110 return false;
111 DCHECK(data); 111 DCHECK(data);
112 memcpy(p, data, sizeof(gpu::ValueState)); 112 memcpy(p, data, sizeof(gpu::ValueState));
113 return true; 113 return true;
114 } 114 }
115 115
116 void ParamTraits<gpu::ValueState>::Log(const param_type& p, std::string* l) { 116 void ParamTraits<gpu::ValueState>::Log(const param_type& p, std::string* l) {
117 l->append("<ValueState ("); 117 l->append("<ValueState (");
118 for (size_t i = 0; i < sizeof(p.int_value); ++i) 118 for (size_t i = 0; i < sizeof(p.int_value); ++i)
119 *l += base::StringPrintf("%i ", p.int_value[i]); 119 *l += base::StringPrintf("%i ", p.int_value[i]);
120 l->append(" int values "); 120 l->append(" int values ");
121 for (size_t i = 0; i < sizeof(p.float_value); ++i) 121 for (size_t i = 0; i < sizeof(p.float_value); ++i)
122 *l += base::StringPrintf("%f ", p.float_value[i]); 122 *l += base::StringPrintf("%f ", p.float_value[i]);
123 l->append(" float values)>"); 123 l->append(" float values)>");
124 } 124 }
125 125
126 } // namespace IPC 126 } // namespace IPC
OLDNEW
« no previous file with comments | « extensions/renderer/user_script_set.cc ('k') | ipc/ipc_channel_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698