| OLD | NEW |
| 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 "content/common/cc_messages.h" | 5 #include "content/common/cc_messages.h" |
| 6 | 6 |
| 7 #include "cc/compositor_frame.h" | 7 #include "cc/output/compositor_frame.h" |
| 8 #include "content/public/common/common_param_traits.h" | 8 #include "content/public/common/common_param_traits.h" |
| 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" | 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations
.h" | 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations
.h" |
| 11 #include "ui/gfx/transform.h" | 11 #include "ui/gfx/transform.h" |
| 12 | 12 |
| 13 namespace IPC { | 13 namespace IPC { |
| 14 | 14 |
| 15 void ParamTraits<WebKit::WebFilterOperation>::Write( | 15 void ParamTraits<WebKit::WebFilterOperation>::Write( |
| 16 Message* m, const param_type& p) { | 16 Message* m, const param_type& p) { |
| 17 WriteParam(m, p.type()); | 17 WriteParam(m, p.type()); |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 700 l->append(", ["); | 700 l->append(", ["); |
| 701 for (size_t i = 0; i < p.render_pass_list.size(); ++i) { | 701 for (size_t i = 0; i < p.render_pass_list.size(); ++i) { |
| 702 if (i) | 702 if (i) |
| 703 l->append(", "); | 703 l->append(", "); |
| 704 LogParam(*p.render_pass_list[i], l); | 704 LogParam(*p.render_pass_list[i], l); |
| 705 } | 705 } |
| 706 l->append("])"); | 706 l->append("])"); |
| 707 } | 707 } |
| 708 | 708 |
| 709 } // namespace IPC | 709 } // namespace IPC |
| OLD | NEW |