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

Side by Side Diff: Source/core/style/StyleScrollSnapData.cpp

Issue 1148873005: Parsing CSS properties for scroll snap points (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix comment Created 5 years, 6 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/style/StyleScrollSnapData.h ('k') | Source/platform/RuntimeEnabledFeatures.in » ('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) 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 : m_xPoints(other.m_xPoints)
57 , m_yPoints(other.m_yPoints)
58 , m_destination(other.m_destination)
59 , m_coordinates(other.m_coordinates)
60 {
61 }
62
63 bool operator==(const StyleScrollSnapData& a, const StyleScrollSnapData& b)
64 {
65 return a.m_xPoints == b.m_xPoints
66 && a.m_yPoints == b.m_yPoints
67 && a.m_destination == b.m_destination
68 && a.m_coordinates == b.m_coordinates;
47 } 69 }
48 70
49 } // namespace blink 71 } // namespace blink
50
51 #endif // OS(MACOSX)
OLDNEW
« no previous file with comments | « Source/core/style/StyleScrollSnapData.h ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698