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

Side by Side Diff: content/common/vr_param_traits.h

Issue 829803003: Adding Chrome-side WebVR interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates/cleanups before pulling in reviewers. Created 5 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
no sievers 2015/03/19 01:24:52 nit: 2015
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_COMMON_VR_PARAM_TRAITS_H_
6 #define CONTENT_COMMON_VR_PARAM_TRAITS_H_
7
8 #include <string>
9
10 #include "ipc/ipc_param_traits.h"
11
12 class PickleIterator;
13
14 namespace blink { class WebVRDevice; }
15
16 namespace IPC {
17
18 class Message;
19
20 template <>
21 struct ParamTraits<blink::WebVRDevice> {
22 typedef blink::WebVRDevice param_type;
23 static void Write(Message* m, const blink::WebVRDevice& p);
24 static bool Read(const Message* m,
25 PickleIterator* iter,
26 blink::WebVRDevice* p);
27 static void Log(const blink::WebVRDevice& p, std::string* l);
28 };
29
30 } // namespace IPC
31
32 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698