| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 void setMockScrollbarsEnabled(bool) override; | 129 void setMockScrollbarsEnabled(bool) override; |
| 130 void setHideScrollbars(bool) override; | 130 void setHideScrollbars(bool) override; |
| 131 void setOfflineWebApplicationCacheEnabled(bool) override; | 131 void setOfflineWebApplicationCacheEnabled(bool) override; |
| 132 void setPassiveEventListenerDefault(PassiveEventListenerDefault) override; | 132 void setPassiveEventListenerDefault(PassiveEventListenerDefault) override; |
| 133 void setPasswordEchoDurationInSeconds(double) override; | 133 void setPasswordEchoDurationInSeconds(double) override; |
| 134 void setPasswordEchoEnabled(bool) override; | 134 void setPasswordEchoEnabled(bool) override; |
| 135 void setPerTilePaintingEnabled(bool) override; | 135 void setPerTilePaintingEnabled(bool) override; |
| 136 void setPictographFontFamily(const WebString&, | 136 void setPictographFontFamily(const WebString&, |
| 137 UScriptCode = USCRIPT_COMMON) override; | 137 UScriptCode = USCRIPT_COMMON) override; |
| 138 void setPluginsEnabled(bool) override; | 138 void setPluginsEnabled(bool) override; |
| 139 void setEncryptedMediaEnabled(bool) override; |
| 139 void setAvailablePointerTypes(int) override; | 140 void setAvailablePointerTypes(int) override; |
| 140 void setPrimaryPointerType(PointerType) override; | 141 void setPrimaryPointerType(PointerType) override; |
| 141 void setAvailableHoverTypes(int) override; | 142 void setAvailableHoverTypes(int) override; |
| 142 void setPrimaryHoverType(HoverType) override; | 143 void setPrimaryHoverType(HoverType) override; |
| 143 void setPreferHiddenVolumeControls(bool) override; | 144 void setPreferHiddenVolumeControls(bool) override; |
| 144 void setRenderVSyncNotificationEnabled(bool) override; | 145 void setRenderVSyncNotificationEnabled(bool) override; |
| 145 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; | 146 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; |
| 146 void setRubberBandingOnCompositorThread(bool) override; | 147 void setRubberBandingOnCompositorThread(bool) override; |
| 147 void setSansSerifFontFamily(const WebString&, | 148 void setSansSerifFontFamily(const WebString&, |
| 148 UScriptCode = USCRIPT_COMMON) override; | 149 UScriptCode = USCRIPT_COMMON) override; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 bool m_clobberUserAgentInitialScaleQuirk; | 271 bool m_clobberUserAgentInitialScaleQuirk; |
| 271 float m_expensiveBackgroundThrottlingCPUBudget; | 272 float m_expensiveBackgroundThrottlingCPUBudget; |
| 272 float m_expensiveBackgroundThrottlingInitialBudget; | 273 float m_expensiveBackgroundThrottlingInitialBudget; |
| 273 float m_expensiveBackgroundThrottlingMaxBudget; | 274 float m_expensiveBackgroundThrottlingMaxBudget; |
| 274 float m_expensiveBackgroundThrottlingMaxDelay; | 275 float m_expensiveBackgroundThrottlingMaxDelay; |
| 275 }; | 276 }; |
| 276 | 277 |
| 277 } // namespace blink | 278 } // namespace blink |
| 278 | 279 |
| 279 #endif | 280 #endif |
| OLD | NEW |