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

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

Issue 1156993013: New media playback UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed my own broken unit test. They really work! Created 5 years, 5 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
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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 void setMinimumLogicalFontSize(int) override; 122 void setMinimumLogicalFontSize(int) override;
123 void setMockScrollbarsEnabled(bool) override; 123 void setMockScrollbarsEnabled(bool) override;
124 void setOfflineWebApplicationCacheEnabled(bool) override; 124 void setOfflineWebApplicationCacheEnabled(bool) override;
125 void setOpenGLMultisamplingEnabled(bool) override; 125 void setOpenGLMultisamplingEnabled(bool) override;
126 void setPasswordEchoDurationInSeconds(double) override; 126 void setPasswordEchoDurationInSeconds(double) override;
127 void setPasswordEchoEnabled(bool) override; 127 void setPasswordEchoEnabled(bool) override;
128 void setPerTilePaintingEnabled(bool) override; 128 void setPerTilePaintingEnabled(bool) override;
129 void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) override; 129 void setPictographFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) override;
130 void setPinchOverlayScrollbarThickness(int) override; 130 void setPinchOverlayScrollbarThickness(int) override;
131 void setPluginsEnabled(bool) override; 131 void setPluginsEnabled(bool) override;
132 void setPreferHiddenAudioElements(bool) override;
132 void setAvailablePointerTypes(int) override; 133 void setAvailablePointerTypes(int) override;
133 void setPrimaryPointerType(PointerType) override; 134 void setPrimaryPointerType(PointerType) override;
134 void setAvailableHoverTypes(int) override; 135 void setAvailableHoverTypes(int) override;
135 void setPrimaryHoverType(HoverType) override; 136 void setPrimaryHoverType(HoverType) override;
136 void setRenderVSyncNotificationEnabled(bool) override; 137 void setRenderVSyncNotificationEnabled(bool) override;
137 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override; 138 void setReportScreenSizeInPhysicalPixelsQuirk(bool) override;
138 void setRootLayerScrolls(bool) override; 139 void setRootLayerScrolls(bool) override;
139 void setRubberBandingOnCompositorThread(bool) override; 140 void setRubberBandingOnCompositorThread(bool) override;
140 void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) override; 141 void setSansSerifFontFamily(const WebString&, UScriptCode = USCRIPT_COMMON) override;
141 void setSelectTrailingWhitespaceEnabled(bool override); 142 void setSelectTrailingWhitespaceEnabled(bool override);
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 // This quirk is to maintain compatibility with Android apps built on 229 // This quirk is to maintain compatibility with Android apps built on
229 // the Android SDK prior to and including version 18. Presumably, this 230 // the Android SDK prior to and including version 18. Presumably, this
230 // can be removed any time after 2015. See http://crbug.com/313754. 231 // can be removed any time after 2015. See http://crbug.com/313754.
231 bool m_clobberUserAgentInitialScaleQuirk; 232 bool m_clobberUserAgentInitialScaleQuirk;
232 bool m_mainFrameResizesAreOrientationChanges; 233 bool m_mainFrameResizesAreOrientationChanges;
233 }; 234 };
234 235
235 } // namespace blink 236 } // namespace blink
236 237
237 #endif 238 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698