Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: Source/web/WebSettingsImpl.h

Issue 66383005: Remove the concept of user stylesheets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 virtual void setSupportsMultipleWindows(bool); 161 virtual void setSupportsMultipleWindows(bool);
162 virtual void setSyncXHRInDocumentsEnabled(bool); 162 virtual void setSyncXHRInDocumentsEnabled(bool);
163 virtual void setTextAreasAreResizable(bool); 163 virtual void setTextAreasAreResizable(bool);
164 virtual void setTextAutosizingEnabled(bool); 164 virtual void setTextAutosizingEnabled(bool);
165 virtual void setTextAutosizingFontScaleFactor(float); 165 virtual void setTextAutosizingFontScaleFactor(float);
166 virtual void setTouchDragDropEnabled(bool); 166 virtual void setTouchDragDropEnabled(bool);
167 virtual void setTouchEditingEnabled(bool); 167 virtual void setTouchEditingEnabled(bool);
168 virtual void setThreadedHTMLParser(bool); 168 virtual void setThreadedHTMLParser(bool);
169 virtual void setUnifiedTextCheckerEnabled(bool); 169 virtual void setUnifiedTextCheckerEnabled(bool);
170 virtual void setUnsafePluginPastingEnabled(bool); 170 virtual void setUnsafePluginPastingEnabled(bool);
171 virtual void setUserStyleSheetLocation(const WebURL&);
172 virtual void setUsesEncodingDetector(bool); 171 virtual void setUsesEncodingDetector(bool);
173 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool); 172 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool);
174 virtual void setUseSolidColorScrollbars(bool); 173 virtual void setUseSolidColorScrollbars(bool);
175 virtual void setUseWideViewport(bool); 174 virtual void setUseWideViewport(bool);
176 virtual void setValidationMessageTimerMagnification(int); 175 virtual void setValidationMessageTimerMagnification(int);
177 virtual void setViewportEnabled(bool); 176 virtual void setViewportEnabled(bool);
178 virtual void setViewportMetaEnabled(bool); 177 virtual void setViewportMetaEnabled(bool);
179 virtual void setViewportMetaLayoutSizeQuirk(bool); 178 virtual void setViewportMetaLayoutSizeQuirk(bool);
180 virtual void setViewportMetaMergeContentQuirk(bool); 179 virtual void setViewportMetaMergeContentQuirk(bool);
181 virtual void setViewportMetaNonUserScalableQuirk(bool); 180 virtual void setViewportMetaNonUserScalableQuirk(bool);
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698