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