| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |