| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 bool viewportMetaEnabled() const; | 201 bool viewportMetaEnabled() const; |
| 202 bool viewportMetaLayoutSizeQuirk() const { return m_viewportMetaLayoutSizeQu
irk; } | 202 bool viewportMetaLayoutSizeQuirk() const { return m_viewportMetaLayoutSizeQu
irk; } |
| 203 bool viewportMetaNonUserScalableQuirk() const { return m_viewportMetaNonUser
ScalableQuirk; } | 203 bool viewportMetaNonUserScalableQuirk() const { return m_viewportMetaNonUser
ScalableQuirk; } |
| 204 bool clobberUserAgentInitialScaleQuirk() const { return m_clobberUserAgentIn
itialScaleQuirk; } | 204 bool clobberUserAgentInitialScaleQuirk() const { return m_clobberUserAgentIn
itialScaleQuirk; } |
| 205 | 205 |
| 206 void setMockGestureTapHighlightsEnabled(bool); | 206 void setMockGestureTapHighlightsEnabled(bool); |
| 207 bool mockGestureTapHighlightsEnabled() const; | 207 bool mockGestureTapHighlightsEnabled() const; |
| 208 | 208 |
| 209 private: | 209 private: |
| 210 Settings* m_settings; | 210 Settings* m_settings; |
| 211 RawPtrWillBeUntracedMember<DevToolsEmulator> m_devToolsEmulator; | 211 UntracedMember<DevToolsEmulator> m_devToolsEmulator; |
| 212 bool m_showFPSCounter; | 212 bool m_showFPSCounter; |
| 213 bool m_showPaintRects; | 213 bool m_showPaintRects; |
| 214 bool m_renderVSyncNotificationEnabled; | 214 bool m_renderVSyncNotificationEnabled; |
| 215 bool m_autoZoomFocusedNodeToLegibleScale; | 215 bool m_autoZoomFocusedNodeToLegibleScale; |
| 216 bool m_perTilePaintingEnabled; | 216 bool m_perTilePaintingEnabled; |
| 217 bool m_supportDeprecatedTargetDensityDPI; | 217 bool m_supportDeprecatedTargetDensityDPI; |
| 218 bool m_shrinksViewportContentToFit; | 218 bool m_shrinksViewportContentToFit; |
| 219 // This quirk is to maintain compatibility with Android apps built on | 219 // This quirk is to maintain compatibility with Android apps built on |
| 220 // the Android SDK prior to and including version 18. Presumably, this | 220 // the Android SDK prior to and including version 18. Presumably, this |
| 221 // can be removed any time after 2015. See http://crbug.com/277369. | 221 // can be removed any time after 2015. See http://crbug.com/277369. |
| 222 bool m_viewportMetaLayoutSizeQuirk; | 222 bool m_viewportMetaLayoutSizeQuirk; |
| 223 // This quirk is to maintain compatibility with Android apps built on | 223 // This quirk is to maintain compatibility with Android apps built on |
| 224 // the Android SDK prior to and including version 18. Presumably, this | 224 // the Android SDK prior to and including version 18. Presumably, this |
| 225 // can be removed any time after 2015. See http://crbug.com/312691. | 225 // can be removed any time after 2015. See http://crbug.com/312691. |
| 226 bool m_viewportMetaNonUserScalableQuirk; | 226 bool m_viewportMetaNonUserScalableQuirk; |
| 227 // This quirk is to maintain compatibility with Android apps built on | 227 // This quirk is to maintain compatibility with Android apps built on |
| 228 // the Android SDK prior to and including version 18. Presumably, this | 228 // the Android SDK prior to and including version 18. Presumably, this |
| 229 // can be removed any time after 2015. See http://crbug.com/313754. | 229 // can be removed any time after 2015. See http://crbug.com/313754. |
| 230 bool m_clobberUserAgentInitialScaleQuirk; | 230 bool m_clobberUserAgentInitialScaleQuirk; |
| 231 }; | 231 }; |
| 232 | 232 |
| 233 } // namespace blink | 233 } // namespace blink |
| 234 | 234 |
| 235 #endif | 235 #endif |
| OLD | NEW |