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