blob: 16d8c0583fe2fd617afe576bb9f0247b66891b88 [file] [log] [blame]
Jamie Gennis8ba32fa2010-12-20 11:27:26 -08001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdint.h>
18#include <sys/types.h>
19
20#include <utils/Errors.h>
21#include <utils/RefBase.h>
22#include <utils/Vector.h>
23#include <utils/Timers.h>
24
25#include <binder/Parcel.h>
26#include <binder/IInterface.h>
27
Andy McFadden2adaf042012-12-18 09:49:45 -080028#include <gui/IGraphicBufferProducer.h>
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080029
30namespace android {
31// ----------------------------------------------------------------------------
32
33enum {
34 REQUEST_BUFFER = IBinder::FIRST_CALL_TRANSACTION,
35 SET_BUFFER_COUNT,
36 DEQUEUE_BUFFER,
Dan Stoza9f3053d2014-03-06 15:14:33 -080037 DETACH_BUFFER,
38 ATTACH_BUFFER,
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080039 QUEUE_BUFFER,
40 CANCEL_BUFFER,
Mathias Agopianeafabcd2011-04-20 14:20:59 -070041 QUERY,
Jamie Gennisfe0a87b2011-07-13 19:12:20 -070042 CONNECT,
43 DISCONNECT,
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080044};
45
Andy McFadden2adaf042012-12-18 09:49:45 -080046class BpGraphicBufferProducer : public BpInterface<IGraphicBufferProducer>
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080047{
48public:
Andy McFadden2adaf042012-12-18 09:49:45 -080049 BpGraphicBufferProducer(const sp<IBinder>& impl)
50 : BpInterface<IGraphicBufferProducer>(impl)
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080051 {
52 }
53
Jamie Gennis7b305ff2011-07-19 12:08:33 -070054 virtual status_t requestBuffer(int bufferIdx, sp<GraphicBuffer>* buf) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080055 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -080056 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080057 data.writeInt32(bufferIdx);
Jamie Gennis8a29ff22011-10-14 15:03:17 -070058 status_t result =remote()->transact(REQUEST_BUFFER, data, &reply);
59 if (result != NO_ERROR) {
60 return result;
61 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080062 bool nonNull = reply.readInt32();
63 if (nonNull) {
Jamie Gennis7b305ff2011-07-19 12:08:33 -070064 *buf = new GraphicBuffer();
Lingyun Zhu2aff7022012-11-20 19:24:35 +080065 result = reply.read(**buf);
66 if(result != NO_ERROR) {
67 (*buf).clear();
68 return result;
69 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080070 }
Jamie Gennis8a29ff22011-10-14 15:03:17 -070071 result = reply.readInt32();
Jamie Gennis7b305ff2011-07-19 12:08:33 -070072 return result;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080073 }
74
75 virtual status_t setBufferCount(int bufferCount)
76 {
77 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -080078 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080079 data.writeInt32(bufferCount);
Jamie Gennis8a29ff22011-10-14 15:03:17 -070080 status_t result =remote()->transact(SET_BUFFER_COUNT, data, &reply);
81 if (result != NO_ERROR) {
82 return result;
83 }
84 result = reply.readInt32();
85 return result;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080086 }
87
Mathias Agopian7cdd7862013-07-18 22:10:56 -070088 virtual status_t dequeueBuffer(int *buf, sp<Fence>* fence, bool async,
Jesse Hallf7857542012-06-14 15:26:33 -070089 uint32_t w, uint32_t h, uint32_t format, uint32_t usage) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -080090 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -080091 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Mathias Agopian7cdd7862013-07-18 22:10:56 -070092 data.writeInt32(async);
Mathias Agopianc04f1532011-04-25 20:22:14 -070093 data.writeInt32(w);
94 data.writeInt32(h);
95 data.writeInt32(format);
96 data.writeInt32(usage);
Jamie Gennis8a29ff22011-10-14 15:03:17 -070097 status_t result = remote()->transact(DEQUEUE_BUFFER, data, &reply);
98 if (result != NO_ERROR) {
99 return result;
100 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800101 *buf = reply.readInt32();
Mathias Agopianba93b3f2013-08-01 15:48:40 -0700102 bool nonNull = reply.readInt32();
103 if (nonNull) {
Jesse Hall4c00cc12013-03-15 21:34:30 -0700104 *fence = new Fence();
Mathias Agopianba93b3f2013-08-01 15:48:40 -0700105 reply.read(**fence);
Jesse Hallf7857542012-06-14 15:26:33 -0700106 }
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700107 result = reply.readInt32();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800108 return result;
109 }
110
Dan Stoza9f3053d2014-03-06 15:14:33 -0800111 virtual status_t detachBuffer(int slot) {
112 Parcel data, reply;
113 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
114 data.writeInt32(slot);
115 status_t result = remote()->transact(DETACH_BUFFER, data, &reply);
116 if (result != NO_ERROR) {
117 return result;
118 }
119 result = reply.readInt32();
120 return result;
121 }
122
123 virtual status_t attachBuffer(int* slot, const sp<GraphicBuffer>& buffer) {
124 Parcel data, reply;
125 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
126 data.write(*buffer.get());
127 status_t result = remote()->transact(ATTACH_BUFFER, data, &reply);
128 if (result != NO_ERROR) {
129 return result;
130 }
131 *slot = reply.readInt32();
132 result = reply.readInt32();
133 return result;
134 }
135
Mathias Agopianf0bc2f12012-04-09 16:14:01 -0700136 virtual status_t queueBuffer(int buf,
137 const QueueBufferInput& input, QueueBufferOutput* output) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800138 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800139 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800140 data.writeInt32(buf);
Jesse Hallc777b0b2012-06-28 12:52:05 -0700141 data.write(input);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700142 status_t result = remote()->transact(QUEUE_BUFFER, data, &reply);
143 if (result != NO_ERROR) {
144 return result;
145 }
Mathias Agopianf0bc2f12012-04-09 16:14:01 -0700146 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700147 result = reply.readInt32();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800148 return result;
149 }
150
Jesse Hall4c00cc12013-03-15 21:34:30 -0700151 virtual void cancelBuffer(int buf, const sp<Fence>& fence) {
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800152 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800153 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800154 data.writeInt32(buf);
Jamie Gennis1df8c342012-12-20 14:05:45 -0800155 data.write(*fence.get());
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800156 remote()->transact(CANCEL_BUFFER, data, &reply);
157 }
158
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700159 virtual int query(int what, int* value) {
160 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800161 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700162 data.writeInt32(what);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700163 status_t result = remote()->transact(QUERY, data, &reply);
164 if (result != NO_ERROR) {
165 return result;
166 }
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700167 value[0] = reply.readInt32();
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700168 result = reply.readInt32();
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700169 return result;
170 }
171
Mathias Agopian365857d2013-09-11 19:35:45 -0700172 virtual status_t connect(const sp<IBinder>& token,
173 int api, bool producerControlledByApp, QueueBufferOutput* output) {
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700174 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800175 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Mathias Agopian365857d2013-09-11 19:35:45 -0700176 data.writeStrongBinder(token);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700177 data.writeInt32(api);
Mathias Agopian595264f2013-07-16 22:56:09 -0700178 data.writeInt32(producerControlledByApp);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700179 status_t result = remote()->transact(CONNECT, data, &reply);
180 if (result != NO_ERROR) {
181 return result;
182 }
Mathias Agopian24202f52012-04-23 14:28:58 -0700183 memcpy(output, reply.readInplace(sizeof(*output)), sizeof(*output));
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700184 result = reply.readInt32();
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700185 return result;
186 }
Mathias Agopian80727112011-05-02 19:51:12 -0700187
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700188 virtual status_t disconnect(int api) {
189 Parcel data, reply;
Andy McFadden2adaf042012-12-18 09:49:45 -0800190 data.writeInterfaceToken(IGraphicBufferProducer::getInterfaceDescriptor());
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700191 data.writeInt32(api);
Jamie Gennis8a29ff22011-10-14 15:03:17 -0700192 status_t result =remote()->transact(DISCONNECT, data, &reply);
193 if (result != NO_ERROR) {
194 return result;
195 }
196 result = reply.readInt32();
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700197 return result;
198 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800199};
200
Andy McFadden466a1922013-01-08 11:25:51 -0800201IMPLEMENT_META_INTERFACE(GraphicBufferProducer, "android.gui.IGraphicBufferProducer");
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800202
203// ----------------------------------------------------------------------
204
Andy McFadden2adaf042012-12-18 09:49:45 -0800205status_t BnGraphicBufferProducer::onTransact(
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800206 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
207{
208 switch(code) {
209 case REQUEST_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800210 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800211 int bufferIdx = data.readInt32();
Jamie Gennis7b305ff2011-07-19 12:08:33 -0700212 sp<GraphicBuffer> buffer;
213 int result = requestBuffer(bufferIdx, &buffer);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800214 reply->writeInt32(buffer != 0);
215 if (buffer != 0) {
216 reply->write(*buffer);
217 }
Jamie Gennis7b305ff2011-07-19 12:08:33 -0700218 reply->writeInt32(result);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800219 return NO_ERROR;
220 } break;
221 case SET_BUFFER_COUNT: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800222 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800223 int bufferCount = data.readInt32();
224 int result = setBufferCount(bufferCount);
225 reply->writeInt32(result);
226 return NO_ERROR;
227 } break;
228 case DEQUEUE_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800229 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Mathias Agopian7cdd7862013-07-18 22:10:56 -0700230 bool async = data.readInt32();
Mathias Agopianc04f1532011-04-25 20:22:14 -0700231 uint32_t w = data.readInt32();
232 uint32_t h = data.readInt32();
233 uint32_t format = data.readInt32();
234 uint32_t usage = data.readInt32();
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800235 int buf;
Jesse Hallf7857542012-06-14 15:26:33 -0700236 sp<Fence> fence;
Mathias Agopian7cdd7862013-07-18 22:10:56 -0700237 int result = dequeueBuffer(&buf, &fence, async, w, h, format, usage);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800238 reply->writeInt32(buf);
Jamie Gennis1df8c342012-12-20 14:05:45 -0800239 reply->writeInt32(fence != NULL);
240 if (fence != NULL) {
Mathias Agopianba93b3f2013-08-01 15:48:40 -0700241 reply->write(*fence);
Jesse Hallf7857542012-06-14 15:26:33 -0700242 }
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800243 reply->writeInt32(result);
244 return NO_ERROR;
245 } break;
Dan Stoza9f3053d2014-03-06 15:14:33 -0800246 case DETACH_BUFFER: {
247 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
248 int slot = data.readInt32();
249 int result = detachBuffer(slot);
250 reply->writeInt32(result);
251 return NO_ERROR;
252 } break;
253 case ATTACH_BUFFER: {
254 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
255 sp<GraphicBuffer> buffer = new GraphicBuffer();
256 data.read(*buffer.get());
257 int slot;
258 int result = attachBuffer(&slot, buffer);
259 reply->writeInt32(slot);
260 reply->writeInt32(result);
261 return NO_ERROR;
262 } break;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800263 case QUEUE_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800264 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800265 int buf = data.readInt32();
Jesse Hallc777b0b2012-06-28 12:52:05 -0700266 QueueBufferInput input(data);
Mathias Agopianf0bc2f12012-04-09 16:14:01 -0700267 QueueBufferOutput* const output =
268 reinterpret_cast<QueueBufferOutput *>(
269 reply->writeInplace(sizeof(QueueBufferOutput)));
Jesse Hallc777b0b2012-06-28 12:52:05 -0700270 status_t result = queueBuffer(buf, input, output);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800271 reply->writeInt32(result);
272 return NO_ERROR;
273 } break;
274 case CANCEL_BUFFER: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800275 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800276 int buf = data.readInt32();
Jamie Gennis1df8c342012-12-20 14:05:45 -0800277 sp<Fence> fence = new Fence();
278 data.read(*fence.get());
Jesse Hallc777b0b2012-06-28 12:52:05 -0700279 cancelBuffer(buf, fence);
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800280 return NO_ERROR;
281 } break;
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700282 case QUERY: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800283 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Mathias Agopianeafabcd2011-04-20 14:20:59 -0700284 int value;
285 int what = data.readInt32();
286 int res = query(what, &value);
287 reply->writeInt32(value);
288 reply->writeInt32(res);
289 return NO_ERROR;
290 } break;
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700291 case CONNECT: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800292 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Mathias Agopian365857d2013-09-11 19:35:45 -0700293 sp<IBinder> token = data.readStrongBinder();
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700294 int api = data.readInt32();
Mathias Agopian595264f2013-07-16 22:56:09 -0700295 bool producerControlledByApp = data.readInt32();
Mathias Agopian24202f52012-04-23 14:28:58 -0700296 QueueBufferOutput* const output =
297 reinterpret_cast<QueueBufferOutput *>(
298 reply->writeInplace(sizeof(QueueBufferOutput)));
Mathias Agopian365857d2013-09-11 19:35:45 -0700299 status_t res = connect(token, api, producerControlledByApp, output);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700300 reply->writeInt32(res);
301 return NO_ERROR;
302 } break;
303 case DISCONNECT: {
Andy McFadden2adaf042012-12-18 09:49:45 -0800304 CHECK_INTERFACE(IGraphicBufferProducer, data, reply);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700305 int api = data.readInt32();
Mathias Agopian27730042011-07-14 20:20:58 -0700306 status_t res = disconnect(api);
Jamie Gennisfe0a87b2011-07-13 19:12:20 -0700307 reply->writeInt32(res);
308 return NO_ERROR;
309 } break;
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800310 }
311 return BBinder::onTransact(code, data, reply, flags);
312}
313
314// ----------------------------------------------------------------------------
315
Andy McFadden2adaf042012-12-18 09:49:45 -0800316IGraphicBufferProducer::QueueBufferInput::QueueBufferInput(const Parcel& parcel) {
Jesse Hallc777b0b2012-06-28 12:52:05 -0700317 parcel.read(*this);
318}
319
Mathias Agopiane1424282013-07-29 21:24:40 -0700320size_t IGraphicBufferProducer::QueueBufferInput::getFlattenedSize() const {
Jesse Hallc777b0b2012-06-28 12:52:05 -0700321 return sizeof(timestamp)
Andy McFadden3c256212013-08-16 14:55:39 -0700322 + sizeof(isAutoTimestamp)
Jesse Hallc777b0b2012-06-28 12:52:05 -0700323 + sizeof(crop)
324 + sizeof(scalingMode)
325 + sizeof(transform)
Mathias Agopian7cdd7862013-07-18 22:10:56 -0700326 + sizeof(async)
Jamie Gennis1df8c342012-12-20 14:05:45 -0800327 + fence->getFlattenedSize();
Jesse Hallc777b0b2012-06-28 12:52:05 -0700328}
329
Mathias Agopiane1424282013-07-29 21:24:40 -0700330size_t IGraphicBufferProducer::QueueBufferInput::getFdCount() const {
Jamie Gennis1df8c342012-12-20 14:05:45 -0800331 return fence->getFdCount();
Jesse Hallc777b0b2012-06-28 12:52:05 -0700332}
333
Mathias Agopiane1424282013-07-29 21:24:40 -0700334status_t IGraphicBufferProducer::QueueBufferInput::flatten(
335 void*& buffer, size_t& size, int*& fds, size_t& count) const
Jesse Hallc777b0b2012-06-28 12:52:05 -0700336{
Mathias Agopiane1424282013-07-29 21:24:40 -0700337 if (size < getFlattenedSize()) {
338 return NO_MEMORY;
339 }
340 FlattenableUtils::write(buffer, size, timestamp);
Andy McFadden3c256212013-08-16 14:55:39 -0700341 FlattenableUtils::write(buffer, size, isAutoTimestamp);
Mathias Agopiane1424282013-07-29 21:24:40 -0700342 FlattenableUtils::write(buffer, size, crop);
343 FlattenableUtils::write(buffer, size, scalingMode);
344 FlattenableUtils::write(buffer, size, transform);
345 FlattenableUtils::write(buffer, size, async);
346 return fence->flatten(buffer, size, fds, count);
Jesse Hallc777b0b2012-06-28 12:52:05 -0700347}
348
Mathias Agopiane1424282013-07-29 21:24:40 -0700349status_t IGraphicBufferProducer::QueueBufferInput::unflatten(
350 void const*& buffer, size_t& size, int const*& fds, size_t& count)
Jesse Hallc777b0b2012-06-28 12:52:05 -0700351{
Mathias Agopiane1424282013-07-29 21:24:40 -0700352 size_t minNeeded =
353 sizeof(timestamp)
Andy McFadden3c256212013-08-16 14:55:39 -0700354 + sizeof(isAutoTimestamp)
Mathias Agopiane1424282013-07-29 21:24:40 -0700355 + sizeof(crop)
356 + sizeof(scalingMode)
357 + sizeof(transform)
358 + sizeof(async);
359
360 if (size < minNeeded) {
361 return NO_MEMORY;
362 }
363
364 FlattenableUtils::read(buffer, size, timestamp);
Andy McFadden3c256212013-08-16 14:55:39 -0700365 FlattenableUtils::read(buffer, size, isAutoTimestamp);
Mathias Agopiane1424282013-07-29 21:24:40 -0700366 FlattenableUtils::read(buffer, size, crop);
367 FlattenableUtils::read(buffer, size, scalingMode);
368 FlattenableUtils::read(buffer, size, transform);
369 FlattenableUtils::read(buffer, size, async);
370
Jamie Gennis1df8c342012-12-20 14:05:45 -0800371 fence = new Fence();
Mathias Agopiane1424282013-07-29 21:24:40 -0700372 return fence->unflatten(buffer, size, fds, count);
Jesse Hallc777b0b2012-06-28 12:52:05 -0700373}
374
Jamie Gennis8ba32fa2010-12-20 11:27:26 -0800375}; // namespace android