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

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

Issue 139173004: [#3] Pass gfx structs by const ref (gfx::SizeF) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT and fixed build error for Android platform! Created 6 years, 11 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/base/math_util.cc ('k') | cc/input/page_scale_animation.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_LAYER_SCROLL_OFFSET_DELEGATE_H_ 5 #ifndef CC_INPUT_LAYER_SCROLL_OFFSET_DELEGATE_H_
6 #define CC_INPUT_LAYER_SCROLL_OFFSET_DELEGATE_H_ 6 #define CC_INPUT_LAYER_SCROLL_OFFSET_DELEGATE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "ui/gfx/size_f.h" 9 #include "ui/gfx/size_f.h"
10 #include "ui/gfx/vector2d_f.h" 10 #include "ui/gfx/vector2d_f.h"
(...skipping 26 matching lines...) Expand all
37 // This is called by the compositor to check whether a delegate-managed fling 37 // This is called by the compositor to check whether a delegate-managed fling
38 // is active or not. 38 // is active or not.
39 virtual bool IsExternalFlingActive() const = 0; 39 virtual bool IsExternalFlingActive() const = 0;
40 40
41 // This is called by the compositor to notify the delegate what is the current 41 // This is called by the compositor to notify the delegate what is the current
42 // page scale factor is. 42 // page scale factor is.
43 virtual void SetTotalPageScaleFactor(float page_scale_factor) = 0; 43 virtual void SetTotalPageScaleFactor(float page_scale_factor) = 0;
44 44
45 // This is called by the compositor to notify the delegate what is the layer's 45 // This is called by the compositor to notify the delegate what is the layer's
46 // scrollable size is. 46 // scrollable size is.
47 virtual void SetScrollableSize(gfx::SizeF scrollable_size) = 0; 47 virtual void SetScrollableSize(const gfx::SizeF& scrollable_size) = 0;
48 48
49 protected: 49 protected:
50 LayerScrollOffsetDelegate() {} 50 LayerScrollOffsetDelegate() {}
51 virtual ~LayerScrollOffsetDelegate() {} 51 virtual ~LayerScrollOffsetDelegate() {}
52 52
53 private: 53 private:
54 DISALLOW_COPY_AND_ASSIGN(LayerScrollOffsetDelegate); 54 DISALLOW_COPY_AND_ASSIGN(LayerScrollOffsetDelegate);
55 }; 55 };
56 56
57 } // namespace cc 57 } // namespace cc
58 58
59 #endif // CC_INPUT_LAYER_SCROLL_OFFSET_DELEGATE_H_ 59 #endif // CC_INPUT_LAYER_SCROLL_OFFSET_DELEGATE_H_
OLDNEW
« no previous file with comments | « cc/base/math_util.cc ('k') | cc/input/page_scale_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698