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

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

Issue 2886943007: Introduce NavigatorWebDriver interface
Patch Set: wip: need more tests Created 3 years, 7 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 SetExpensiveBackgroundThrottlingCPUBudget(float) override; 204 void SetExpensiveBackgroundThrottlingCPUBudget(float) override;
205 void SetExpensiveBackgroundThrottlingInitialBudget(float) override; 205 void SetExpensiveBackgroundThrottlingInitialBudget(float) override;
206 void SetExpensiveBackgroundThrottlingMaxBudget(float) override; 206 void SetExpensiveBackgroundThrottlingMaxBudget(float) override;
207 void SetExpensiveBackgroundThrottlingMaxDelay(float) override; 207 void SetExpensiveBackgroundThrottlingMaxDelay(float) override;
208 void SetMediaControlsEnabled(bool) override; 208 void SetMediaControlsEnabled(bool) override;
209 void SetAutomationControlled(bool) override;
210 void SetHeadless(bool) override;
209 void SetDoNotUpdateSelectionOnMutatingSelectionRange(bool) override; 211 void SetDoNotUpdateSelectionOnMutatingSelectionRange(bool) override;
210 212
211 bool ShowFPSCounter() const { return show_fps_counter_; } 213 bool ShowFPSCounter() const { return show_fps_counter_; }
212 bool ShowPaintRects() const { return show_paint_rects_; } 214 bool ShowPaintRects() const { return show_paint_rects_; }
213 bool RenderVSyncNotificationEnabled() const { 215 bool RenderVSyncNotificationEnabled() const {
214 return render_v_sync_notification_enabled_; 216 return render_v_sync_notification_enabled_;
215 } 217 }
216 bool AutoZoomFocusedNodeToLegibleScale() const { 218 bool AutoZoomFocusedNodeToLegibleScale() const {
217 return auto_zoom_focused_node_to_legible_scale_; 219 return auto_zoom_focused_node_to_legible_scale_;
218 } 220 }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 bool clobber_user_agent_initial_scale_quirk_; 273 bool clobber_user_agent_initial_scale_quirk_;
272 float expensive_background_throttling_cpu_budget_; 274 float expensive_background_throttling_cpu_budget_;
273 float expensive_background_throttling_initial_budget_; 275 float expensive_background_throttling_initial_budget_;
274 float expensive_background_throttling_max_budget_; 276 float expensive_background_throttling_max_budget_;
275 float expensive_background_throttling_max_delay_; 277 float expensive_background_throttling_max_delay_;
276 }; 278 };
277 279
278 } // namespace blink 280 } // namespace blink
279 281
280 #endif 282 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/Settings.json5 ('k') | third_party/WebKit/Source/web/WebSettingsImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698