| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 virtual void setDeferredFiltersEnabled(bool) override; | 63 virtual void setDeferredFiltersEnabled(bool) override; |
| 64 virtual void setDeferredImageDecodingEnabled(bool) override; | 64 virtual void setDeferredImageDecodingEnabled(bool) override; |
| 65 virtual void setDeviceSupportsMouse(bool) override; | 65 virtual void setDeviceSupportsMouse(bool) override; |
| 66 | 66 |
| 67 // FIXME: Remove once the pointer/hover features are converted to use the | 67 // FIXME: Remove once the pointer/hover features are converted to use the |
| 68 // new APIs (e.g. setPrimaryPointerType) on the chromium side | 68 // new APIs (e.g. setPrimaryPointerType) on the chromium side |
| 69 virtual void setDeviceSupportsTouch(bool) override; | 69 virtual void setDeviceSupportsTouch(bool) override; |
| 70 | 70 |
| 71 virtual void setDoubleTapToZoomEnabled(bool) override; | 71 virtual void setDoubleTapToZoomEnabled(bool) override; |
| 72 virtual void setDownloadableBinaryFontsEnabled(bool) override; | 72 virtual void setDownloadableBinaryFontsEnabled(bool) override; |
| 73 virtual void setEnableScrollAnimator(bool) override; | |
| 74 virtual void setEnableTouchAdjustment(bool) override; | 73 virtual void setEnableTouchAdjustment(bool) override; |
| 75 virtual void setExperimentalWebGLEnabled(bool) override; | 74 virtual void setExperimentalWebGLEnabled(bool) override; |
| 76 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) override; | 75 virtual void setFantasyFontFamily(const WebString&, UScriptCode = USCRIPT_CO
MMON) override; |
| 77 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; | 76 virtual void setFixedFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; |
| 78 virtual void setForceZeroLayoutHeight(bool) override; | 77 virtual void setForceZeroLayoutHeight(bool) override; |
| 79 virtual void setImagesEnabled(bool) override; | 78 virtual void setImagesEnabled(bool) override; |
| 80 virtual void setJavaScriptCanAccessClipboard(bool) override; | 79 virtual void setJavaScriptCanAccessClipboard(bool) override; |
| 81 virtual void setLoadsImagesAutomatically(bool) override; | 80 virtual void setLoadsImagesAutomatically(bool) override; |
| 82 virtual void setLoadWithOverviewMode(bool) override; | 81 virtual void setLoadWithOverviewMode(bool) override; |
| 83 virtual void setMainFrameClipsContent(bool) override; | 82 virtual void setMainFrameClipsContent(bool) override; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 bool m_doubleTapToZoomEnabled; | 131 bool m_doubleTapToZoomEnabled; |
| 133 bool m_perTilePaintingEnabled; | 132 bool m_perTilePaintingEnabled; |
| 134 bool m_supportDeprecatedTargetDensityDPI; | 133 bool m_supportDeprecatedTargetDensityDPI; |
| 135 bool m_shrinksViewportContentToFit; | 134 bool m_shrinksViewportContentToFit; |
| 136 bool m_mainFrameResizesAreOrientationChanges; | 135 bool m_mainFrameResizesAreOrientationChanges; |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 } // namespace blink | 138 } // namespace blink |
| 140 | 139 |
| 141 #endif | 140 #endif |
| OLD | NEW |