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

Side by Side Diff: Source/core/frame/PageScaleConstraints.h

Issue 1315783003: Make classes and structures in core/frame fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 | « Source/core/frame/OriginsUsingFeatures.h ('k') | Source/core/frame/PageScaleConstraintsSet.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef PageScaleConstraints_h 31 #ifndef PageScaleConstraints_h
32 #define PageScaleConstraints_h 32 #define PageScaleConstraints_h
33 33
34 #include "core/CoreExport.h" 34 #include "core/CoreExport.h"
35 #include "platform/geometry/FloatSize.h" 35 #include "platform/geometry/FloatSize.h"
36 #include "wtf/Allocator.h"
36 37
37 namespace blink { 38 namespace blink {
38 39
39 struct CORE_EXPORT PageScaleConstraints { 40 struct CORE_EXPORT PageScaleConstraints {
41 DISALLOW_ALLOCATION();
40 FloatSize layoutSize; 42 FloatSize layoutSize;
41 43
42 float initialScale; 44 float initialScale;
43 float minimumScale; 45 float minimumScale;
44 float maximumScale; 46 float maximumScale;
45 47
46 PageScaleConstraints(); 48 PageScaleConstraints();
47 PageScaleConstraints(float initial, float minimum, float maximum); 49 PageScaleConstraints(float initial, float minimum, float maximum);
48 50
49 void overrideWith(const PageScaleConstraints& other); 51 void overrideWith(const PageScaleConstraints& other);
50 float clampToConstraints(float pageScaleFactor) const; 52 float clampToConstraints(float pageScaleFactor) const;
51 void clampAll(); 53 void clampAll();
52 void fitToContentsWidth(float contentsWidth, int viewWidthNotIncludingScroll bars); 54 void fitToContentsWidth(float contentsWidth, int viewWidthNotIncludingScroll bars);
53 void resolveAutoInitialScale(); 55 void resolveAutoInitialScale();
54 56
55 bool operator==(const PageScaleConstraints& other) const; 57 bool operator==(const PageScaleConstraints& other) const;
56 }; 58 };
57 59
58 } // namespace blink 60 } // namespace blink
59 61
60 #endif // PageScaleConstraints_h 62 #endif // PageScaleConstraints_h
OLDNEW
« no previous file with comments | « Source/core/frame/OriginsUsingFeatures.h ('k') | Source/core/frame/PageScaleConstraintsSet.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698