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

Side by Side Diff: third_party/WebKit/Source/core/exported/WebSettingsImpl.h

Issue 2943983003: chrome/blink: Add functionality for in-product help for media elements. (Closed)
Patch Set: mounir's comments. Created 3 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 void SetViewportMetaLayoutSizeQuirk(bool) override; 196 void SetViewportMetaLayoutSizeQuirk(bool) override;
197 void SetViewportMetaMergeContentQuirk(bool) override; 197 void SetViewportMetaMergeContentQuirk(bool) override;
198 void SetViewportMetaNonUserScalableQuirk(bool) override; 198 void SetViewportMetaNonUserScalableQuirk(bool) override;
199 void SetViewportMetaZeroValuesQuirk(bool) override; 199 void SetViewportMetaZeroValuesQuirk(bool) override;
200 void SetWebGLErrorsToConsoleEnabled(bool) override; 200 void SetWebGLErrorsToConsoleEnabled(bool) override;
201 void SetWebSecurityEnabled(bool) override; 201 void SetWebSecurityEnabled(bool) override;
202 void SetWideViewportQuirkEnabled(bool) override; 202 void SetWideViewportQuirkEnabled(bool) override;
203 void SetXSSAuditorEnabled(bool) override; 203 void SetXSSAuditorEnabled(bool) override;
204 void SetMediaControlsEnabled(bool) override; 204 void SetMediaControlsEnabled(bool) override;
205 void SetDoNotUpdateSelectionOnMutatingSelectionRange(bool) override; 205 void SetDoNotUpdateSelectionOnMutatingSelectionRange(bool) override;
206 void SetMediaDownloadInProductHelpEnabled(bool) override;
206 207
207 bool ShowFPSCounter() const { return show_fps_counter_; } 208 bool ShowFPSCounter() const { return show_fps_counter_; }
208 bool ShowPaintRects() const { return show_paint_rects_; } 209 bool ShowPaintRects() const { return show_paint_rects_; }
209 bool RenderVSyncNotificationEnabled() const { 210 bool RenderVSyncNotificationEnabled() const {
210 return render_v_sync_notification_enabled_; 211 return render_v_sync_notification_enabled_;
211 } 212 }
212 bool AutoZoomFocusedNodeToLegibleScale() const { 213 bool AutoZoomFocusedNodeToLegibleScale() const {
213 return auto_zoom_focused_node_to_legible_scale_; 214 return auto_zoom_focused_node_to_legible_scale_;
214 } 215 }
215 bool DoubleTapToZoomEnabled() const; 216 bool DoubleTapToZoomEnabled() const;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 bool viewport_meta_non_user_scalable_quirk_; 252 bool viewport_meta_non_user_scalable_quirk_;
252 // This quirk is to maintain compatibility with Android apps built on 253 // This quirk is to maintain compatibility with Android apps built on
253 // the Android SDK prior to and including version 18. Presumably, this 254 // the Android SDK prior to and including version 18. Presumably, this
254 // can be removed any time after 2015. See http://crbug.com/313754. 255 // can be removed any time after 2015. See http://crbug.com/313754.
255 bool clobber_user_agent_initial_scale_quirk_; 256 bool clobber_user_agent_initial_scale_quirk_;
256 }; 257 };
257 258
258 } // namespace blink 259 } // namespace blink
259 260
260 #endif 261 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698