| 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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 void setViewportMetaZeroValuesQuirk(bool) override; | 203 void setViewportMetaZeroValuesQuirk(bool) override; |
| 204 void setWebGLErrorsToConsoleEnabled(bool) override; | 204 void setWebGLErrorsToConsoleEnabled(bool) override; |
| 205 void setWebSecurityEnabled(bool) override; | 205 void setWebSecurityEnabled(bool) override; |
| 206 void setWideViewportQuirkEnabled(bool) override; | 206 void setWideViewportQuirkEnabled(bool) override; |
| 207 void setXSSAuditorEnabled(bool) override; | 207 void setXSSAuditorEnabled(bool) override; |
| 208 void setExpensiveBackgroundThrottlingCPUBudget(float) override; | 208 void setExpensiveBackgroundThrottlingCPUBudget(float) override; |
| 209 void setExpensiveBackgroundThrottlingInitialBudget(float) override; | 209 void setExpensiveBackgroundThrottlingInitialBudget(float) override; |
| 210 void setExpensiveBackgroundThrottlingMaxBudget(float) override; | 210 void setExpensiveBackgroundThrottlingMaxBudget(float) override; |
| 211 void setExpensiveBackgroundThrottlingMaxDelay(float) override; | 211 void setExpensiveBackgroundThrottlingMaxDelay(float) override; |
| 212 void setMediaControlsEnabled(bool) override; | 212 void setMediaControlsEnabled(bool) override; |
| 213 void setDoNotUpdateSelectionOnMutatingSelectionRange(bool) override; |
| 213 | 214 |
| 214 bool showFPSCounter() const { return m_showFPSCounter; } | 215 bool showFPSCounter() const { return m_showFPSCounter; } |
| 215 bool showPaintRects() const { return m_showPaintRects; } | 216 bool showPaintRects() const { return m_showPaintRects; } |
| 216 bool renderVSyncNotificationEnabled() const { | 217 bool renderVSyncNotificationEnabled() const { |
| 217 return m_renderVSyncNotificationEnabled; | 218 return m_renderVSyncNotificationEnabled; |
| 218 } | 219 } |
| 219 bool autoZoomFocusedNodeToLegibleScale() const { | 220 bool autoZoomFocusedNodeToLegibleScale() const { |
| 220 return m_autoZoomFocusedNodeToLegibleScale; | 221 return m_autoZoomFocusedNodeToLegibleScale; |
| 221 } | 222 } |
| 222 bool doubleTapToZoomEnabled() const; | 223 bool doubleTapToZoomEnabled() const; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 bool m_clobberUserAgentInitialScaleQuirk; | 275 bool m_clobberUserAgentInitialScaleQuirk; |
| 275 float m_expensiveBackgroundThrottlingCPUBudget; | 276 float m_expensiveBackgroundThrottlingCPUBudget; |
| 276 float m_expensiveBackgroundThrottlingInitialBudget; | 277 float m_expensiveBackgroundThrottlingInitialBudget; |
| 277 float m_expensiveBackgroundThrottlingMaxBudget; | 278 float m_expensiveBackgroundThrottlingMaxBudget; |
| 278 float m_expensiveBackgroundThrottlingMaxDelay; | 279 float m_expensiveBackgroundThrottlingMaxDelay; |
| 279 }; | 280 }; |
| 280 | 281 |
| 281 } // namespace blink | 282 } // namespace blink |
| 282 | 283 |
| 283 #endif | 284 #endif |
| OLD | NEW |