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

Side by Side Diff: Source/core/frame/Settings.cpp

Issue 146683003: Settings should not call into inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: incorporated review comments Created 6 years, 10 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/Settings.h ('k') | Source/core/frame/Settings.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, 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 "config.h" 26 #include "config.h"
27 #include "core/frame/Settings.h" 27 #include "core/frame/Settings.h"
28 28
29 #include "core/inspector/InspectorInstrumentation.h"
30 #include "platform/scroll/ScrollbarTheme.h" 29 #include "platform/scroll/ScrollbarTheme.h"
31 30
32 namespace WebCore { 31 namespace WebCore {
33 32
34 // NOTEs 33 // NOTEs
35 // 1) EditingMacBehavior comprises builds on Mac; 34 // 1) EditingMacBehavior comprises builds on Mac;
36 // 2) EditingWindowsBehavior comprises builds on Windows; 35 // 2) EditingWindowsBehavior comprises builds on Windows;
37 // 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);
38 // 4) EditingAndroidBehavior comprises Android builds. 37 // 4) EditingAndroidBehavior comprises Android builds.
39 // 99) MacEditingBehavior is used a fallback. 38 // 99) MacEditingBehavior is used a fallback.
(...skipping 18 matching lines...) Expand all
58 #else 57 #else
59 static const bool defaultSmartInsertDeleteEnabled = false; 58 static const bool defaultSmartInsertDeleteEnabled = false;
60 #endif 59 #endif
61 #if OS(WIN) 60 #if OS(WIN)
62 static const bool defaultSelectTrailingWhitespaceEnabled = true; 61 static const bool defaultSelectTrailingWhitespaceEnabled = true;
63 #else 62 #else
64 static const bool defaultSelectTrailingWhitespaceEnabled = false; 63 static const bool defaultSelectTrailingWhitespaceEnabled = false;
65 #endif 64 #endif
66 65
67 Settings::Settings() 66 Settings::Settings()
68 : m_deviceScaleAdjustment(1.0f) 67 : m_openGLMultisamplingEnabled(false)
69 #if HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP 68 #if HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP
70 , m_textAutosizingWindowSizeOverride(320, 480) 69 , m_textAutosizingWindowSizeOverride(320, 480)
70 SETTINGS_INITIALIZER_LIST
eseidel 2014/01/27 20:33:58 Can we just reorder the members so that we can lea
gnana 2014/01/30 16:03:02 Done.
71 , m_textAutosizingEnabled(true) 71 , m_textAutosizingEnabled(true)
72 #else 72 #else
73 SETTINGS_INITIALIZER_LIST
73 , m_textAutosizingEnabled(false) 74 , m_textAutosizingEnabled(false)
74 #endif 75 #endif
75 SETTINGS_INITIALIZER_LIST
76 , m_isScriptEnabled(false)
77 , m_openGLMultisamplingEnabled(false)
78 { 76 {
79 } 77 }
80 78
81 PassOwnPtr<Settings> Settings::create() 79 PassOwnPtr<Settings> Settings::create()
82 { 80 {
83 return adoptPtr(new Settings); 81 return adoptPtr(new Settings);
84 } 82 }
85 83
86 SETTINGS_SETTER_BODIES 84 SETTINGS_SETTER_BODIES
87 85
88 void Settings::setDelegate(SettingsDelegate* delegate) 86 void Settings::setDelegate(SettingsDelegate* delegate)
89 { 87 {
90 m_delegate = delegate; 88 m_delegate = delegate;
91 } 89 }
92 90
93 void Settings::invalidate(SettingsDelegate::ChangeType changeType) 91 void Settings::invalidate(SettingsDelegate::ChangeType changeType)
94 { 92 {
95 if (m_delegate) 93 if (m_delegate)
96 m_delegate->settingsChanged(changeType); 94 m_delegate->settingsChanged(changeType);
97 } 95 }
98 96
99 // This is a total hack and should be removed.
100 Page* Settings::pageOfShame() const
101 {
102 if (!m_delegate)
103 return 0;
104 return m_delegate->page();
105 }
106
107 void Settings::setTextAutosizingEnabled(bool textAutosizingEnabled) 97 void Settings::setTextAutosizingEnabled(bool textAutosizingEnabled)
108 { 98 {
109 if (m_textAutosizingEnabled == textAutosizingEnabled) 99 if (m_textAutosizingEnabled == textAutosizingEnabled)
110 return; 100 return;
111 101
112 m_textAutosizingEnabled = textAutosizingEnabled; 102 m_textAutosizingEnabled = textAutosizingEnabled;
113 invalidate(SettingsDelegate::StyleChange); 103 invalidate(SettingsDelegate::StyleChange);
114 } 104 }
115 105
116 bool Settings::textAutosizingEnabled() const
117 {
118 return InspectorInstrumentation::overrideTextAutosizing(pageOfShame(), m_tex tAutosizingEnabled);
119 }
120
121 // FIXME: Move to Settings.in once make_settings can understand IntSize. 106 // FIXME: Move to Settings.in once make_settings can understand IntSize.
122 void Settings::setTextAutosizingWindowSizeOverride(const IntSize& textAutosizing WindowSizeOverride) 107 void Settings::setTextAutosizingWindowSizeOverride(const IntSize& textAutosizing WindowSizeOverride)
123 { 108 {
124 if (m_textAutosizingWindowSizeOverride == textAutosizingWindowSizeOverride) 109 if (m_textAutosizingWindowSizeOverride == textAutosizingWindowSizeOverride)
125 return; 110 return;
126 111
127 m_textAutosizingWindowSizeOverride = textAutosizingWindowSizeOverride; 112 m_textAutosizingWindowSizeOverride = textAutosizingWindowSizeOverride;
128 invalidate(SettingsDelegate::StyleChange); 113 invalidate(SettingsDelegate::StyleChange);
129 } 114 }
130 115
131 void Settings::setDeviceScaleAdjustment(float deviceScaleAdjustment)
132 {
133 m_deviceScaleAdjustment = deviceScaleAdjustment;
134 invalidate(SettingsDelegate::TextAutosizingChange);
135 }
136
137 float Settings::deviceScaleAdjustment() const
138 {
139 return InspectorInstrumentation::overrideFontScaleFactor(pageOfShame(), m_de viceScaleAdjustment);
140 }
141
142 void Settings::setScriptEnabled(bool isScriptEnabled)
143 {
144 m_isScriptEnabled = isScriptEnabled;
145 InspectorInstrumentation::scriptsEnabled(pageOfShame(), m_isScriptEnabled);
146 }
147
148 void Settings::setMockScrollbarsEnabled(bool flag) 116 void Settings::setMockScrollbarsEnabled(bool flag)
149 { 117 {
150 ScrollbarTheme::setMockScrollbarsEnabled(flag); 118 ScrollbarTheme::setMockScrollbarsEnabled(flag);
151 } 119 }
152 120
153 bool Settings::mockScrollbarsEnabled() 121 bool Settings::mockScrollbarsEnabled()
154 { 122 {
155 return ScrollbarTheme::mockScrollbarsEnabled(); 123 return ScrollbarTheme::mockScrollbarsEnabled();
156 } 124 }
157 125
158 void Settings::setOpenGLMultisamplingEnabled(bool flag) 126 void Settings::setOpenGLMultisamplingEnabled(bool flag)
159 { 127 {
160 if (m_openGLMultisamplingEnabled == flag) 128 if (m_openGLMultisamplingEnabled == flag)
161 return; 129 return;
162 130
163 m_openGLMultisamplingEnabled = flag; 131 m_openGLMultisamplingEnabled = flag;
164 invalidate(SettingsDelegate::MultisamplingChange); 132 invalidate(SettingsDelegate::MultisamplingChange);
165 } 133 }
166 134
167 } // namespace WebCore 135 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/frame/Settings.h ('k') | Source/core/frame/Settings.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698