| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 UScriptCode = USCRIPT_COMMON) override; | 74 UScriptCode = USCRIPT_COMMON) override; |
| 75 void setDNSPrefetchingEnabled(bool) override; | 75 void setDNSPrefetchingEnabled(bool) override; |
| 76 void setDataSaverEnabled(bool) override; | 76 void setDataSaverEnabled(bool) override; |
| 77 void setDOMPasteAllowed(bool) override; | 77 void setDOMPasteAllowed(bool) override; |
| 78 void setDefaultFixedFontSize(int) override; | 78 void setDefaultFixedFontSize(int) override; |
| 79 void setDefaultFontSize(int) override; | 79 void setDefaultFontSize(int) override; |
| 80 void setDefaultTextEncodingName(const WebString&) override; | 80 void setDefaultTextEncodingName(const WebString&) override; |
| 81 void setDefaultVideoPosterURL(const WebString&) override; | 81 void setDefaultVideoPosterURL(const WebString&) override; |
| 82 void setDeviceScaleAdjustment(float) override; | 82 void setDeviceScaleAdjustment(float) override; |
| 83 | 83 |
| 84 // FIXME: Replace this with pointer/hover queries? crbug.com/441813 | |
| 85 void setDeviceSupportsTouch(bool) override; | |
| 86 | |
| 87 void setDisableReadingFromCanvas(bool) override; | 84 void setDisableReadingFromCanvas(bool) override; |
| 88 void setDoubleTapToZoomEnabled(bool) override; | 85 void setDoubleTapToZoomEnabled(bool) override; |
| 89 void setDownloadableBinaryFontsEnabled(bool) override; | 86 void setDownloadableBinaryFontsEnabled(bool) override; |
| 90 void setEditingBehavior(EditingBehavior) override; | 87 void setEditingBehavior(EditingBehavior) override; |
| 91 void setEnableScrollAnimator(bool) override; | 88 void setEnableScrollAnimator(bool) override; |
| 92 void setEnableTouchAdjustment(bool) override; | 89 void setEnableTouchAdjustment(bool) override; |
| 93 bool multiTargetTapNotificationEnabled() override; | 90 bool multiTargetTapNotificationEnabled() override; |
| 94 void setMultiTargetTapNotificationEnabled(bool) override; | 91 void setMultiTargetTapNotificationEnabled(bool) override; |
| 95 void setExperimentalWebGLEnabled(bool) override; | 92 void setExperimentalWebGLEnabled(bool) override; |
| 96 void setFantasyFontFamily(const WebString&, | 93 void setFantasyFontFamily(const WebString&, |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 bool m_clobberUserAgentInitialScaleQuirk; | 270 bool m_clobberUserAgentInitialScaleQuirk; |
| 274 float m_expensiveBackgroundThrottlingCPUBudget; | 271 float m_expensiveBackgroundThrottlingCPUBudget; |
| 275 float m_expensiveBackgroundThrottlingInitialBudget; | 272 float m_expensiveBackgroundThrottlingInitialBudget; |
| 276 float m_expensiveBackgroundThrottlingMaxBudget; | 273 float m_expensiveBackgroundThrottlingMaxBudget; |
| 277 float m_expensiveBackgroundThrottlingMaxDelay; | 274 float m_expensiveBackgroundThrottlingMaxDelay; |
| 278 }; | 275 }; |
| 279 | 276 |
| 280 } // namespace blink | 277 } // namespace blink |
| 281 | 278 |
| 282 #endif | 279 #endif |
| OLD | NEW |