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

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

Powered by Google App Engine
This is Rietveld 408576698