| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 virtual void setSelectionIncludesAltImageText(bool) override; | 97 virtual void setSelectionIncludesAltImageText(bool) override; |
| 98 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; | 98 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; |
| 99 virtual void setShouldClearDocumentBackground(bool) override; | 99 virtual void setShouldClearDocumentBackground(bool) override; |
| 100 virtual void setShouldRespectImageOrientation(bool) override; | 100 virtual void setShouldRespectImageOrientation(bool) override; |
| 101 virtual void setShowFPSCounter(bool) override; | 101 virtual void setShowFPSCounter(bool) override; |
| 102 virtual void setShowPaintRects(bool) override; | 102 virtual void setShowPaintRects(bool) override; |
| 103 virtual void setShrinksViewportContentToFit(bool) override; | 103 virtual void setShrinksViewportContentToFit(bool) override; |
| 104 virtual void setSmartInsertDeleteEnabled(bool) override; | 104 virtual void setSmartInsertDeleteEnabled(bool) override; |
| 105 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON) override; | 105 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON) override; |
| 106 virtual void setSupportDeprecatedTargetDensityDPI(bool) override; | 106 virtual void setSupportDeprecatedTargetDensityDPI(bool) override; |
| 107 virtual void setTextAreasAreResizable(bool) override; | |
| 108 virtual void setTouchEditingEnabled(bool) override; | 107 virtual void setTouchEditingEnabled(bool) override; |
| 109 virtual void setUnifiedTextCheckerEnabled(bool) override; | 108 virtual void setUnifiedTextCheckerEnabled(bool) override; |
| 110 virtual void setUseSolidColorScrollbars(bool) override; | 109 virtual void setUseSolidColorScrollbars(bool) override; |
| 111 virtual void setUseWideViewport(bool) override; | 110 virtual void setUseWideViewport(bool) override; |
| 112 virtual void setV8CacheOptions(V8CacheOptions) override; | 111 virtual void setV8CacheOptions(V8CacheOptions) override; |
| 113 virtual void setWebGLErrorsToConsoleEnabled(bool) override; | 112 virtual void setWebGLErrorsToConsoleEnabled(bool) override; |
| 114 | 113 |
| 115 bool showFPSCounter() const { return m_showFPSCounter; } | 114 bool showFPSCounter() const { return m_showFPSCounter; } |
| 116 bool showPaintRects() const { return m_showPaintRects; } | 115 bool showPaintRects() const { return m_showPaintRects; } |
| 117 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati
onEnabled; } | 116 bool renderVSyncNotificationEnabled() const { return m_renderVSyncNotificati
onEnabled; } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 131 bool m_doubleTapToZoomEnabled; | 130 bool m_doubleTapToZoomEnabled; |
| 132 bool m_perTilePaintingEnabled; | 131 bool m_perTilePaintingEnabled; |
| 133 bool m_supportDeprecatedTargetDensityDPI; | 132 bool m_supportDeprecatedTargetDensityDPI; |
| 134 bool m_shrinksViewportContentToFit; | 133 bool m_shrinksViewportContentToFit; |
| 135 bool m_mainFrameResizesAreOrientationChanges; | 134 bool m_mainFrameResizesAreOrientationChanges; |
| 136 }; | 135 }; |
| 137 | 136 |
| 138 } // namespace blink | 137 } // namespace blink |
| 139 | 138 |
| 140 #endif | 139 #endif |
| OLD | NEW |