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

Side by Side Diff: public/web/WebSettings.h

Issue 614173003: Remove the disallowFullscreenForNonMediaElements setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove the tests for this setting Created 6 years, 2 months 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
« no previous file with comments | « Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 virtual void setContainerCullingEnabled(bool) = 0; 118 virtual void setContainerCullingEnabled(bool) = 0;
119 virtual void setCookieEnabled(bool) = 0; 119 virtual void setCookieEnabled(bool) = 0;
120 virtual void setNavigateOnDragDrop(bool) = 0; 120 virtual void setNavigateOnDragDrop(bool) = 0;
121 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON) = 0; 121 virtual void setCursiveFontFamily(const WebString&, UScriptCode = USCRIPT_CO MMON) = 0;
122 virtual void setDNSPrefetchingEnabled(bool) = 0; 122 virtual void setDNSPrefetchingEnabled(bool) = 0;
123 virtual void setDOMPasteAllowed(bool) = 0; 123 virtual void setDOMPasteAllowed(bool) = 0;
124 virtual void setDefaultFixedFontSize(int) = 0; 124 virtual void setDefaultFixedFontSize(int) = 0;
125 virtual void setDefaultFontSize(int) = 0; 125 virtual void setDefaultFontSize(int) = 0;
126 virtual void setDefaultTextEncodingName(const WebString&) = 0; 126 virtual void setDefaultTextEncodingName(const WebString&) = 0;
127 virtual void setDefaultVideoPosterURL(const WebString&) = 0; 127 virtual void setDefaultVideoPosterURL(const WebString&) = 0;
128 virtual void setDisallowFullscreenForNonMediaElements(bool) = 0;
129 void setDeferred2dCanvasEnabled(bool) { } // temporary stub 128 void setDeferred2dCanvasEnabled(bool) { } // temporary stub
130 virtual void setDeferredFiltersEnabled(bool) = 0; 129 virtual void setDeferredFiltersEnabled(bool) = 0;
131 virtual void setDeferredImageDecodingEnabled(bool) = 0; 130 virtual void setDeferredImageDecodingEnabled(bool) = 0;
132 virtual void setDeviceScaleAdjustment(float) = 0; 131 virtual void setDeviceScaleAdjustment(float) = 0;
133 virtual void setDeviceSupportsMouse(bool) = 0; 132 virtual void setDeviceSupportsMouse(bool) = 0;
134 virtual void setDeviceSupportsTouch(bool) = 0; 133 virtual void setDeviceSupportsTouch(bool) = 0;
135 virtual void setDoubleTapToZoomEnabled(bool) = 0; 134 virtual void setDoubleTapToZoomEnabled(bool) = 0;
136 virtual void setDownloadableBinaryFontsEnabled(bool) = 0; 135 virtual void setDownloadableBinaryFontsEnabled(bool) = 0;
137 virtual void setEditingBehavior(EditingBehavior) = 0; 136 virtual void setEditingBehavior(EditingBehavior) = 0;
138 virtual void setEnableScrollAnimator(bool) = 0; 137 virtual void setEnableScrollAnimator(bool) = 0;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 virtual void setWideViewportQuirkEnabled(bool) = 0; 229 virtual void setWideViewportQuirkEnabled(bool) = 0;
231 virtual void setXSSAuditorEnabled(bool) = 0; 230 virtual void setXSSAuditorEnabled(bool) = 0;
232 231
233 protected: 232 protected:
234 ~WebSettings() { } 233 ~WebSettings() { }
235 }; 234 };
236 235
237 } // namespace blink 236 } // namespace blink
238 237
239 #endif 238 #endif
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698