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