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

Side by Side Diff: cc/ipc/cc_param_traits.h

Issue 2884423003: Use scroll-boundary-behavior to control overscroll-refresh/glow on android. (Closed)
Patch Set: Fixed the comments Created 3 years, 7 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
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 // IPC Messages sent between compositor instances. 5 // IPC Messages sent between compositor instances.
6 6
7 #ifndef CC_IPC_CC_PARAM_TRAITS_H_ 7 #ifndef CC_IPC_CC_PARAM_TRAITS_H_
8 #define CC_IPC_CC_PARAM_TRAITS_H_ 8 #define CC_IPC_CC_PARAM_TRAITS_H_
9 9
10 #include "cc/base/filter_operation.h" 10 #include "cc/base/filter_operation.h"
11 #include "cc/input/scroll_boundary_behavior.h"
dtapuska 2017/05/23 17:13:40 This is an odd include. Where is this used?
sunyunjia 2017/06/13 15:56:21 Sorry, I forgot to remove it.
11 #include "cc/ipc/cc_ipc_export.h" 12 #include "cc/ipc/cc_ipc_export.h"
12 #include "cc/ipc/cc_param_traits_macros.h" 13 #include "cc/ipc/cc_param_traits_macros.h"
13 #include "cc/output/compositor_frame.h" 14 #include "cc/output/compositor_frame.h"
14 #include "cc/quads/draw_quad.h" 15 #include "cc/quads/draw_quad.h"
15 #include "cc/quads/stream_video_draw_quad.h" 16 #include "cc/quads/stream_video_draw_quad.h"
16 #include "cc/quads/texture_draw_quad.h" 17 #include "cc/quads/texture_draw_quad.h"
17 #include "gpu/ipc/common/gpu_command_buffer_traits.h" 18 #include "gpu/ipc/common/gpu_command_buffer_traits.h"
18 #include "ipc/ipc_message_macros.h" 19 #include "ipc/ipc_message_macros.h"
19 20
20 namespace cc { 21 namespace cc {
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 static void Write(base::Pickle* m, const param_type& p); 150 static void Write(base::Pickle* m, const param_type& p);
150 static bool Read(const base::Pickle* m, 151 static bool Read(const base::Pickle* m,
151 base::PickleIterator* iter, 152 base::PickleIterator* iter,
152 param_type* p); 153 param_type* p);
153 static void Log(const param_type& p, std::string* l); 154 static void Log(const param_type& p, std::string* l);
154 }; 155 };
155 156
156 } // namespace IPC 157 } // namespace IPC
157 158
158 #endif // CC_IPC_CC_PARAM_TRAITS_H_ 159 #endif // CC_IPC_CC_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698