OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserv
ed. |
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 COMPUTER, INC. ``AS IS'' AND ANY | 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR | 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #include "core/frame/Settings.h" | 26 #include "core/frame/Settings.h" |
27 | 27 |
28 #include "platform/RuntimeEnabledFeatures.h" | 28 #include "platform/RuntimeEnabledFeatures.h" |
29 #include "platform/scroll/ScrollbarTheme.h" | 29 #include "platform/scroll/ScrollbarTheme.h" |
30 #include "wtf/PtrUtil.h" | |
31 #include <memory> | |
32 | 30 |
33 namespace blink { | 31 namespace blink { |
34 | 32 |
35 // NOTEs | 33 // NOTEs |
36 // 1) EditingMacBehavior comprises builds on Mac; | 34 // 1) EditingMacBehavior comprises builds on Mac; |
37 // 2) EditingWindowsBehavior comprises builds on Windows; | 35 // 2) EditingWindowsBehavior comprises builds on Windows; |
38 // 3) EditingUnixBehavior comprises all unix-based systems, but Darwin/MacOS/An
droid (and then abusing the terminology); | 36 // 3) EditingUnixBehavior comprises all unix-based systems, but Darwin/MacOS/An
droid (and then abusing the terminology); |
39 // 4) EditingAndroidBehavior comprises Android builds. | 37 // 4) EditingAndroidBehavior comprises Android builds. |
40 // 99) MacEditingBehavior is used a fallback. | 38 // 99) MacEditingBehavior is used a fallback. |
41 static EditingBehaviorType editingBehaviorTypeForPlatform() | 39 static EditingBehaviorType editingBehaviorTypeForPlatform() |
(...skipping 21 matching lines...) Expand all Loading... |
63 #if DEBUG_TEXT_AUTOSIZING_ON_DESKTOP | 61 #if DEBUG_TEXT_AUTOSIZING_ON_DESKTOP |
64 : m_textAutosizingWindowSizeOverride(320, 480) | 62 : m_textAutosizingWindowSizeOverride(320, 480) |
65 , m_textAutosizingEnabled(true) | 63 , m_textAutosizingEnabled(true) |
66 #else | 64 #else |
67 : m_textAutosizingEnabled(false) | 65 : m_textAutosizingEnabled(false) |
68 #endif | 66 #endif |
69 SETTINGS_INITIALIZER_LIST | 67 SETTINGS_INITIALIZER_LIST |
70 { | 68 { |
71 } | 69 } |
72 | 70 |
73 std::unique_ptr<Settings> Settings::create() | 71 PassOwnPtr<Settings> Settings::create() |
74 { | 72 { |
75 return wrapUnique(new Settings); | 73 return adoptPtr(new Settings); |
76 } | 74 } |
77 | 75 |
78 SETTINGS_SETTER_BODIES | 76 SETTINGS_SETTER_BODIES |
79 | 77 |
80 void Settings::setDelegate(SettingsDelegate* delegate) | 78 void Settings::setDelegate(SettingsDelegate* delegate) |
81 { | 79 { |
82 m_delegate = delegate; | 80 m_delegate = delegate; |
83 } | 81 } |
84 | 82 |
85 void Settings::invalidate(SettingsDelegate::ChangeType changeType) | 83 void Settings::invalidate(SettingsDelegate::ChangeType changeType) |
(...skipping 25 matching lines...) Expand all Loading... |
111 { | 109 { |
112 ScrollbarTheme::setMockScrollbarsEnabled(flag); | 110 ScrollbarTheme::setMockScrollbarsEnabled(flag); |
113 } | 111 } |
114 | 112 |
115 bool Settings::mockScrollbarsEnabled() | 113 bool Settings::mockScrollbarsEnabled() |
116 { | 114 { |
117 return ScrollbarTheme::mockScrollbarsEnabled(); | 115 return ScrollbarTheme::mockScrollbarsEnabled(); |
118 } | 116 } |
119 | 117 |
120 } // namespace blink | 118 } // namespace blink |
OLD | NEW |