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

Side by Side Diff: content/common/gpu/client/cc_param_traits.cc

Issue 10915298: Add CCDelegatingRenderer, and corresponding IPCs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: correct base Created 8 years, 3 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "content/common/gpu/client/cc_param_traits.h"
6
7 namespace IPC {
8
9 void ParamTraits<WebKit::WebCompositorFrame>::Write(Message* m,
10 const param_type& p) {
11 NOTIMPLEMENTED();
12 }
13
14 bool ParamTraits<WebKit::WebCompositorFrame>::Read(const Message* m,
15 PickleIterator* iter,
16 param_type* p) {
17 NOTIMPLEMENTED();
18 return true;
19 }
20
21 void ParamTraits<WebKit::WebCompositorFrame>::Log(const param_type& p,
22 std::string* l) {
23 NOTIMPLEMENTED();
24 }
25
26 void ParamTraits<WebKit::WebCompositorFrameAck>::Write(Message* m,
27 const param_type& p) {
28 NOTIMPLEMENTED();
29 }
30
31 bool ParamTraits<WebKit::WebCompositorFrameAck>::Read(const Message* m,
32 PickleIterator* iter,
33 param_type* p) {
34 NOTIMPLEMENTED();
35 return true;
36 }
37
38 void ParamTraits<WebKit::WebCompositorFrameAck>::Log(const param_type& p,
39 std::string* l) {
40 NOTIMPLEMENTED();
41 }
42
43 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698