| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 virtual void setDefaultVideoPosterURL(const WebString&) override; | 79 virtual void setDefaultVideoPosterURL(const WebString&) override; |
| 80 virtual void setDeferredFiltersEnabled(bool) override; | 80 virtual void setDeferredFiltersEnabled(bool) override; |
| 81 virtual void setDeferredImageDecodingEnabled(bool) override; | 81 virtual void setDeferredImageDecodingEnabled(bool) override; |
| 82 virtual void setDeviceScaleAdjustment(float) override; | 82 virtual void setDeviceScaleAdjustment(float) override; |
| 83 virtual void setDeviceSupportsMouse(bool) override; | 83 virtual void setDeviceSupportsMouse(bool) override; |
| 84 | 84 |
| 85 // FIXME: Remove once the pointer/hover features are converted to use the | 85 // FIXME: Remove once the pointer/hover features are converted to use the |
| 86 // new APIs (e.g. setPrimaryPointerType) on the chromium side | 86 // new APIs (e.g. setPrimaryPointerType) on the chromium side |
| 87 virtual void setDeviceSupportsTouch(bool) override; | 87 virtual void setDeviceSupportsTouch(bool) override; |
| 88 | 88 |
| 89 virtual void setDisallowFullscreenForNonMediaElements(bool) override; | |
| 90 virtual void setDoubleTapToZoomEnabled(bool) override; | 89 virtual void setDoubleTapToZoomEnabled(bool) override; |
| 91 virtual void setDownloadableBinaryFontsEnabled(bool) override; | 90 virtual void setDownloadableBinaryFontsEnabled(bool) override; |
| 92 virtual void setEditingBehavior(EditingBehavior) override; | 91 virtual void setEditingBehavior(EditingBehavior) override; |
| 93 virtual void setEnableScrollAnimator(bool) override; | 92 virtual void setEnableScrollAnimator(bool) override; |
| 94 virtual void setEnableTouchAdjustment(bool) override; | 93 virtual void setEnableTouchAdjustment(bool) override; |
| 95 virtual void setRegionBasedColumnsEnabled(bool) override; | 94 virtual void setRegionBasedColumnsEnabled(bool) override; |
| 96 virtual void setExperimentalWebGLEnabled(bool) override; | 95 virtual void setExperimentalWebGLEnabled(bool) override; |
| 97 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) override; | 96 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) override; |
| 98 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; | 97 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; |
| 99 virtual void setForceZeroLayoutHeight(bool) override; | 98 virtual void setForceZeroLayoutHeight(bool) override; |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 // This quirk is to maintain compatibility with Android apps built on | 214 // This quirk is to maintain compatibility with Android apps built on |
| 216 // the Android SDK prior to and including version 18. Presumably, this | 215 // the Android SDK prior to and including version 18. Presumably, this |
| 217 // can be removed any time after 2015. See http://crbug.com/313754. | 216 // can be removed any time after 2015. See http://crbug.com/313754. |
| 218 bool m_clobberUserAgentInitialScaleQuirk; | 217 bool m_clobberUserAgentInitialScaleQuirk; |
| 219 bool m_mainFrameResizesAreOrientationChanges; | 218 bool m_mainFrameResizesAreOrientationChanges; |
| 220 }; | 219 }; |
| 221 | 220 |
| 222 } // namespace blink | 221 } // namespace blink |
| 223 | 222 |
| 224 #endif | 223 #endif |
| OLD | NEW |