| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 virtual void setRenderVSyncNotificationEnabled(bool); | 143 virtual void setRenderVSyncNotificationEnabled(bool); |
| 144 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool); | 144 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool); |
| 145 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); | 145 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON); |
| 146 virtual void setSelectTrailingWhitespaceEnabled(bool); | 146 virtual void setSelectTrailingWhitespaceEnabled(bool); |
| 147 virtual void setSelectionIncludesAltImageText(bool); | 147 virtual void setSelectionIncludesAltImageText(bool); |
| 148 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); | 148 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON); |
| 149 virtual void setShouldDisplayCaptions(bool); | 149 virtual void setShouldDisplayCaptions(bool); |
| 150 virtual void setShouldDisplaySubtitles(bool); | 150 virtual void setShouldDisplaySubtitles(bool); |
| 151 virtual void setShouldDisplayTextDescriptions(bool); | 151 virtual void setShouldDisplayTextDescriptions(bool); |
| 152 virtual void setShouldPrintBackgrounds(bool); | 152 virtual void setShouldPrintBackgrounds(bool); |
| 153 virtual void setShouldClearDocumentBackground(bool); | |
| 154 virtual void setShouldRespectImageOrientation(bool); | 153 virtual void setShouldRespectImageOrientation(bool); |
| 155 virtual void setShowFPSCounter(bool); | 154 virtual void setShowFPSCounter(bool); |
| 156 virtual void setShowPaintRects(bool); | 155 virtual void setShowPaintRects(bool); |
| 157 virtual void setShrinksStandaloneImagesToFit(bool); | 156 virtual void setShrinksStandaloneImagesToFit(bool); |
| 158 virtual void setSmartInsertDeleteEnabled(bool); | 157 virtual void setSmartInsertDeleteEnabled(bool); |
| 159 virtual void setSpatialNavigationEnabled(bool); | 158 virtual void setSpatialNavigationEnabled(bool); |
| 160 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); | 159 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON); |
| 161 virtual void setSupportDeprecatedTargetDensityDPI(bool); | 160 virtual void setSupportDeprecatedTargetDensityDPI(bool); |
| 162 virtual void setSupportsMultipleWindows(bool); | 161 virtual void setSupportsMultipleWindows(bool); |
| 163 virtual void setSyncXHRInDocumentsEnabled(bool); | 162 virtual void setSyncXHRInDocumentsEnabled(bool); |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 // the Android SDK prior to and including version 18. Presumably, this | 224 // the Android SDK prior to and including version 18. Presumably, this |
| 226 // can be removed any time after 2015. See http://crbug.com/313754. | 225 // can be removed any time after 2015. See http://crbug.com/313754. |
| 227 bool m_clobberUserAgentInitialScaleQuirk; | 226 bool m_clobberUserAgentInitialScaleQuirk; |
| 228 int m_pinchOverlayScrollbarThickness; | 227 int m_pinchOverlayScrollbarThickness; |
| 229 bool m_mainFrameResizesAreOrientationChanges; | 228 bool m_mainFrameResizesAreOrientationChanges; |
| 230 }; | 229 }; |
| 231 | 230 |
| 232 } // namespace blink | 231 } // namespace blink |
| 233 | 232 |
| 234 #endif | 233 #endif |
| OLD | NEW |