| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0; | 142 virtual void setSelectTrailingWhitespaceEnabled(bool) = 0; |
| 143 virtual void setSelectionIncludesAltImageText(bool) = 0; | 143 virtual void setSelectionIncludesAltImageText(bool) = 0; |
| 144 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) = 0; | 144 virtual void setSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMM
ON) = 0; |
| 145 virtual void setShouldPrintBackgrounds(bool) = 0; | 145 virtual void setShouldPrintBackgrounds(bool) = 0; |
| 146 virtual void setShouldRespectImageOrientation(bool) = 0; | 146 virtual void setShouldRespectImageOrientation(bool) = 0; |
| 147 virtual void setShowDebugBorders(bool) = 0; | 147 virtual void setShowDebugBorders(bool) = 0; |
| 148 virtual void setShowFPSCounter(bool) = 0; | 148 virtual void setShowFPSCounter(bool) = 0; |
| 149 virtual void setShowPaintRects(bool) = 0; | 149 virtual void setShowPaintRects(bool) = 0; |
| 150 virtual void setShrinksStandaloneImagesToFit(bool) = 0; | 150 virtual void setShrinksStandaloneImagesToFit(bool) = 0; |
| 151 virtual void setSmartInsertDeleteEnabled(bool) = 0; | 151 virtual void setSmartInsertDeleteEnabled(bool) = 0; |
| 152 virtual void setSpatialNavigationEnabled(bool) = 0; |
| 152 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON) = 0; | 153 virtual void setStandardFontFamily(const WebString&, UScriptCode = USCRIPT_C
OMMON) = 0; |
| 153 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0; | 154 virtual void setSupportDeprecatedTargetDensityDPI(bool) = 0; |
| 154 virtual void setSupportsMultipleWindows(bool) = 0; | 155 virtual void setSupportsMultipleWindows(bool) = 0; |
| 155 virtual void setSyncXHRInDocumentsEnabled(bool) = 0; | 156 virtual void setSyncXHRInDocumentsEnabled(bool) = 0; |
| 156 virtual void setTextAreasAreResizable(bool) = 0; | 157 virtual void setTextAreasAreResizable(bool) = 0; |
| 157 virtual void setTextAutosizingEnabled(bool) = 0; | 158 virtual void setTextAutosizingEnabled(bool) = 0; |
| 158 virtual void setTextAutosizingFontScaleFactor(float) = 0; | 159 virtual void setTextAutosizingFontScaleFactor(float) = 0; |
| 159 virtual void setTextDirectionSubmenuInclusionBehaviorNeverIncluded() = 0; | 160 virtual void setTextDirectionSubmenuInclusionBehaviorNeverIncluded() = 0; |
| 160 virtual void setThreadedHTMLParser(bool) = 0; | 161 virtual void setThreadedHTMLParser(bool) = 0; |
| 161 virtual void setTouchDragDropEnabled(bool) = 0; | 162 virtual void setTouchDragDropEnabled(bool) = 0; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 177 void setApplyPageScaleFactorInCompositor(bool enabled) { } | 178 void setApplyPageScaleFactorInCompositor(bool enabled) { } |
| 178 void setApplyDefaultDeviceScaleFactorInCompositor(bool enabled) { } | 179 void setApplyDefaultDeviceScaleFactorInCompositor(bool enabled) { } |
| 179 | 180 |
| 180 protected: | 181 protected: |
| 181 ~WebSettings() { } | 182 ~WebSettings() { } |
| 182 }; | 183 }; |
| 183 | 184 |
| 184 } // namespace WebKit | 185 } // namespace WebKit |
| 185 | 186 |
| 186 #endif | 187 #endif |
| OLD | NEW |