OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
157 void WebSettingsImpl::setTextAutosizingEnabled(bool enabled) | 157 void WebSettingsImpl::setTextAutosizingEnabled(bool enabled) |
158 { | 158 { |
159 m_inspectorController->setTextAutosizingEnabled(enabled); | 159 m_inspectorController->setTextAutosizingEnabled(enabled); |
160 } | 160 } |
161 | 161 |
162 void WebSettingsImpl::setAccessibilityFontScaleFactor(float fontScaleFactor) | 162 void WebSettingsImpl::setAccessibilityFontScaleFactor(float fontScaleFactor) |
163 { | 163 { |
164 m_settings->setAccessibilityFontScaleFactor(fontScaleFactor); | 164 m_settings->setAccessibilityFontScaleFactor(fontScaleFactor); |
165 } | 165 } |
166 | 166 |
167 void WebSettingsImpl::setAccessibilityEnabled(bool enabled) | |
168 { | |
169 m_settings->setAccessibilityEnabled(enabled); | |
170 } | |
171 | |
172 void WebSettingsImpl::setInlineTextBoxAccessibilityEnabled(bool enabled) | |
173 { | |
174 m_settings->setInlineTextBoxAccessibilityEnabled(enabled); | |
175 } | |
abarth-chromium
2014/08/23 05:59:11
These are correct.
aboxhall
2014/08/27 15:26:33
Acknowledged.
| |
176 | |
167 void WebSettingsImpl::setDeviceScaleAdjustment(float deviceScaleAdjustment) | 177 void WebSettingsImpl::setDeviceScaleAdjustment(float deviceScaleAdjustment) |
168 { | 178 { |
169 m_inspectorController->setDeviceScaleAdjustment(deviceScaleAdjustment); | 179 m_inspectorController->setDeviceScaleAdjustment(deviceScaleAdjustment); |
170 } | 180 } |
171 | 181 |
172 void WebSettingsImpl::setDefaultTextEncodingName(const WebString& encoding) | 182 void WebSettingsImpl::setDefaultTextEncodingName(const WebString& encoding) |
173 { | 183 { |
174 m_settings->setDefaultTextEncodingName((String)encoding); | 184 m_settings->setDefaultTextEncodingName((String)encoding); |
175 } | 185 } |
176 | 186 |
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
689 { | 699 { |
690 m_settings->setDisallowFullscreenForNonMediaElements(enabled); | 700 m_settings->setDisallowFullscreenForNonMediaElements(enabled); |
691 } | 701 } |
692 | 702 |
693 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) | 703 void WebSettingsImpl::setV8CacheOptions(V8CacheOptions options) |
694 { | 704 { |
695 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); | 705 m_settings->setV8CacheOptions(static_cast<blink::V8CacheOptions>(options)); |
696 } | 706 } |
697 | 707 |
698 } // namespace blink | 708 } // namespace blink |
OLD | NEW |