| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 virtual void setPrivilegedWebGLExtensionsEnabled(bool); | 135 virtual void setPrivilegedWebGLExtensionsEnabled(bool); |
| 136 virtual void setRenderVSyncNotificationEnabled(bool); | 136 virtual void setRenderVSyncNotificationEnabled(bool); |
| 137 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); | 137 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); |
| 138 virtual void setSelectTrailingWhitespaceEnabled(bool); | 138 virtual void setSelectTrailingWhitespaceEnabled(bool); |
| 139 virtual void setSelectionIncludesAltImageText(bool); | 139 virtual void setSelectionIncludesAltImageText(bool); |
| 140 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); | 140 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); |
| 141 virtual void setShouldDisplayCaptions(bool); | 141 virtual void setShouldDisplayCaptions(bool); |
| 142 virtual void setShouldDisplaySubtitles(bool); | 142 virtual void setShouldDisplaySubtitles(bool); |
| 143 virtual void setShouldDisplayTextDescriptions(bool); | 143 virtual void setShouldDisplayTextDescriptions(bool); |
| 144 virtual void setShouldPrintBackgrounds(bool); | 144 virtual void setShouldPrintBackgrounds(bool); |
| 145 virtual void setShouldBlendWithExistingContent(bool); |
| 145 virtual void setShouldRespectImageOrientation(bool); | 146 virtual void setShouldRespectImageOrientation(bool); |
| 146 virtual void setShowFPSCounter(bool); | 147 virtual void setShowFPSCounter(bool); |
| 147 virtual void setShowPaintRects(bool); | 148 virtual void setShowPaintRects(bool); |
| 148 virtual void setShrinksStandaloneImagesToFit(bool); | 149 virtual void setShrinksStandaloneImagesToFit(bool); |
| 149 virtual void setSmartInsertDeleteEnabled(bool); | 150 virtual void setSmartInsertDeleteEnabled(bool); |
| 150 virtual void setSpatialNavigationEnabled(bool); | 151 virtual void setSpatialNavigationEnabled(bool); |
| 151 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); | 152 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); |
| 152 virtual void setSupportDeprecatedTargetDensityDPI(bool); | 153 virtual void setSupportDeprecatedTargetDensityDPI(bool); |
| 153 virtual void setSupportsMultipleWindows(bool); | 154 virtual void setSupportsMultipleWindows(bool); |
| 154 virtual void setSyncXHRInDocumentsEnabled(bool); | 155 virtual void setSyncXHRInDocumentsEnabled(bool); |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // This quirk is to maintain compatibility with Android apps built on | 202 // This quirk is to maintain compatibility with Android apps built on |
| 202 // the Android SDK prior to and including version 18. Presumably, this | 203 // the Android SDK prior to and including version 18. Presumably, this |
| 203 // can be removed any time after 2015. See http://crbug.com/277369. | 204 // can be removed any time after 2015. See http://crbug.com/277369. |
| 204 bool m_viewportMetaLayoutSizeQuirk; | 205 bool m_viewportMetaLayoutSizeQuirk; |
| 205 int m_pinchOverlayScrollbarThickness; | 206 int m_pinchOverlayScrollbarThickness; |
| 206 }; | 207 }; |
| 207 | 208 |
| 208 } // namespace WebKit | 209 } // namespace WebKit |
| 209 | 210 |
| 210 #endif | 211 #endif |
| OLD | NEW |