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

Side by Side Diff: cc/input/scroll_state.h

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 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
« no previous file with comments | « cc/input/scroll_elasticity_helper.h ('k') | cc/input/scroll_state_data.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef CC_INPUT_SCROLL_STATE_H_ 5 #ifndef CC_INPUT_SCROLL_STATE_H_
6 #define CC_INPUT_SCROLL_STATE_H_ 6 #define CC_INPUT_SCROLL_STATE_H_
7 7
8 #include <list> 8 #include <list>
9 #include <memory> 9 #include <memory>
10 10
11 #include "cc/base/cc_export.h" 11 #include "cc/cc_export.h"
12 #include "cc/input/scroll_state_data.h" 12 #include "cc/input/scroll_state_data.h"
13 #include "ui/gfx/geometry/point.h" 13 #include "ui/gfx/geometry/point.h"
14 #include "ui/gfx/geometry/vector2d.h" 14 #include "ui/gfx/geometry/vector2d.h"
15 15
16 namespace cc { 16 namespace cc {
17 17
18 class LayerTreeImpl; 18 class LayerTreeImpl;
19 19
20 // ScrollState is based on the proposal for scroll customization in blink, found 20 // ScrollState is based on the proposal for scroll customization in blink, found
21 // here: https://goo.gl/1ipTpP. 21 // here: https://goo.gl/1ipTpP.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 private: 99 private:
100 ScrollStateData data_; 100 ScrollStateData data_;
101 LayerTreeImpl* layer_tree_impl_; 101 LayerTreeImpl* layer_tree_impl_;
102 std::list<ScrollNode*> scroll_chain_; 102 std::list<ScrollNode*> scroll_chain_;
103 }; 103 };
104 104
105 } // namespace cc 105 } // namespace cc
106 106
107 #endif // CC_INPUT_SCROLL_STATE_H_ 107 #endif // CC_INPUT_SCROLL_STATE_H_
OLDNEW
« no previous file with comments | « cc/input/scroll_elasticity_helper.h ('k') | cc/input/scroll_state_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698