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

Side by Side Diff: content/common/cc_messages.cc

Issue 12912006: Part 4 of cc/ directory shuffles: output (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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 "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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698