Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2014 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | 14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 * THE POSSIBILITY OF SUCH DAMAGE. | 23 * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "StyleScrollSnapData.h" | |
| 27 | 28 |
| 28 #if OS(MACOSX) | 29 #include "core/style/ComputedStyle.h" |
| 29 #include "platform/SecureTextInput.h" | |
| 30 | |
| 31 #import <Carbon/Carbon.h> | |
| 32 | 30 |
| 33 namespace blink { | 31 namespace blink { |
| 34 | 32 |
| 35 void enableSecureTextInput() | 33 ScrollSnapPoints::ScrollSnapPoints() |
| 34 : repeatOffset(100, Percent) | |
| 35 , hasRepeat(false) | |
| 36 , usesElements(false) | |
| 36 { | 37 { |
| 37 if (IsSecureEventInputEnabled()) | |
| 38 return; | |
| 39 EnableSecureEventInput(); | |
| 40 } | 38 } |
| 41 | 39 |
| 42 void disableSecureTextInput() | 40 bool operator==(const ScrollSnapPoints& a, const ScrollSnapPoints& b) |
| 43 { | 41 { |
| 44 if (!IsSecureEventInputEnabled()) | 42 return a.repeatOffset == b.repeatOffset |
| 45 return; | 43 && a.hasRepeat == b.hasRepeat |
| 46 DisableSecureEventInput(); | 44 && a.usesElements == b.usesElements; |
| 45 } | |
| 46 | |
| 47 StyleScrollSnapData::StyleScrollSnapData() | |
| 48 : m_xPoints(ComputedStyle::initialScrollSnapPointsX()) | |
| 49 , m_yPoints(ComputedStyle::initialScrollSnapPointsY()) | |
| 50 , m_destination(ComputedStyle::initialScrollSnapDestination()) | |
| 51 , m_coordinates(ComputedStyle::initialScrollSnapCoordinate()) | |
| 52 { | |
| 53 } | |
| 54 | |
| 55 StyleScrollSnapData::StyleScrollSnapData(const StyleScrollSnapData& other) | |
| 56 : RefCounted<StyleScrollSnapData>() | |
|
Timothy Loh
2015/06/04 03:58:27
don't need to explicitly call this
majidvp
2015/06/04 22:41:40
Done.
| |
| 57 , m_xPoints(other.m_xPoints) | |
| 58 , m_yPoints(other.m_yPoints) | |
| 59 , m_destination(other.m_destination) | |
| 60 , m_coordinates(other.m_coordinates) | |
| 61 { | |
| 62 } | |
| 63 | |
| 64 bool operator==(const StyleScrollSnapData& a, const StyleScrollSnapData& b) | |
| 65 { | |
| 66 return a.m_xPoints == b.m_xPoints | |
| 67 && a.m_yPoints == b.m_yPoints | |
| 68 && a.m_destination == b.m_destination | |
| 69 && a.m_coordinates == b.m_coordinates; | |
| 47 } | 70 } |
| 48 | 71 |
| 49 } // namespace blink | 72 } // namespace blink |
| 50 | |
| 51 #endif // OS(MACOSX) | |
| OLD | NEW |