| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 virtual void setPrimaryPointerType(PointerType) override; | 131 virtual void setPrimaryPointerType(PointerType) override; |
| 132 virtual void setAvailableHoverTypes(int) override; | 132 virtual void setAvailableHoverTypes(int) override; |
| 133 virtual void setPrimaryHoverType(HoverType) override; | 133 virtual void setPrimaryHoverType(HoverType) override; |
| 134 virtual void setRenderVSyncNotificationEnabled(bool) override; | 134 virtual void setRenderVSyncNotificationEnabled(bool) override; |
| 135 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; | 135 virtual void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; |
| 136 virtual void setRootLayerScrolls(bool) override; | 136 virtual void setRootLayerScrolls(bool) override; |
| 137 virtual void setRubberBandingOnCompositorThread(bool) override; | 137 virtual void setRubberBandingOnCompositorThread(bool) override; |
| 138 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON) override; | 138 virtual void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_
COMMON) override; |
| 139 virtual void setSelectTrailingWhitespaceEnabled(bool override); | 139 virtual void setSelectTrailingWhitespaceEnabled(bool override); |
| 140 virtual void setSelectionIncludesAltImageText(bool) override; | 140 virtual void setSelectionIncludesAltImageText(bool) override; |
| 141 virtual void setSelectionStrategy(SelectionStrategyType) override; |
| 141 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; | 142 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) override; |
| 142 virtual void setShouldPrintBackgrounds(bool) override; | 143 virtual void setShouldPrintBackgrounds(bool) override; |
| 143 virtual void setShouldClearDocumentBackground(bool) override; | 144 virtual void setShouldClearDocumentBackground(bool) override; |
| 144 virtual void setShouldRespectImageOrientation(bool) override; | 145 virtual void setShouldRespectImageOrientation(bool) override; |
| 145 virtual void setShowContextMenuOnMouseUp(bool) override; | 146 virtual void setShowContextMenuOnMouseUp(bool) override; |
| 146 virtual void setShowFPSCounter(bool) override; | 147 virtual void setShowFPSCounter(bool) override; |
| 147 virtual void setShowPaintRects(bool) override; | 148 virtual void setShowPaintRects(bool) override; |
| 148 virtual void setShrinksStandaloneImagesToFit(bool) override; | 149 virtual void setShrinksStandaloneImagesToFit(bool) override; |
| 149 virtual void setShrinksViewportContentToFit(bool) override; | 150 virtual void setShrinksViewportContentToFit(bool) override; |
| 150 virtual void setSmartInsertDeleteEnabled(bool) override; | 151 virtual void setSmartInsertDeleteEnabled(bool) override; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 // This quirk is to maintain compatibility with Android apps built on | 219 // This quirk is to maintain compatibility with Android apps built on |
| 219 // the Android SDK prior to and including version 18. Presumably, this | 220 // the Android SDK prior to and including version 18. Presumably, this |
| 220 // can be removed any time after 2015. See http://crbug.com/313754. | 221 // can be removed any time after 2015. See http://crbug.com/313754. |
| 221 bool m_clobberUserAgentInitialScaleQuirk; | 222 bool m_clobberUserAgentInitialScaleQuirk; |
| 222 bool m_mainFrameResizesAreOrientationChanges; | 223 bool m_mainFrameResizesAreOrientationChanges; |
| 223 }; | 224 }; |
| 224 | 225 |
| 225 } // namespace blink | 226 } // namespace blink |
| 226 | 227 |
| 227 #endif | 228 #endif |
| OLD | NEW |