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

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

Issue 2881073003: Support DataSaver for SharedWorker (Closed)
Patch Set: fix #include "public/web/WebDataSaverFlag.h" 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 void SetAntialiased2dCanvasEnabled(bool) override; 66 void SetAntialiased2dCanvasEnabled(bool) override;
67 void SetAntialiasedClips2dCanvasEnabled(bool) override; 67 void SetAntialiasedClips2dCanvasEnabled(bool) override;
68 void SetAutoZoomFocusedNodeToLegibleScale(bool) override; 68 void SetAutoZoomFocusedNodeToLegibleScale(bool) override;
69 void SetBrowserSideNavigationEnabled(bool) override; 69 void SetBrowserSideNavigationEnabled(bool) override;
70 void SetClobberUserAgentInitialScaleQuirk(bool) override; 70 void SetClobberUserAgentInitialScaleQuirk(bool) override;
71 void SetCookieEnabled(bool) override; 71 void SetCookieEnabled(bool) override;
72 void SetNavigateOnDragDrop(bool) override; 72 void SetNavigateOnDragDrop(bool) override;
73 void SetCursiveFontFamily(const WebString&, 73 void SetCursiveFontFamily(const WebString&,
74 UScriptCode = USCRIPT_COMMON) override; 74 UScriptCode = USCRIPT_COMMON) override;
75 void SetDNSPrefetchingEnabled(bool) override; 75 void SetDNSPrefetchingEnabled(bool) override;
76 void SetDataSaverEnabled(bool) override; 76 void SetDataSaverFlag(WebDataSaverFlag) override;
77 void SetDOMPasteAllowed(bool) override; 77 void SetDOMPasteAllowed(bool) override;
78 void SetDefaultFixedFontSize(int) override; 78 void SetDefaultFixedFontSize(int) override;
79 void SetDefaultFontSize(int) override; 79 void SetDefaultFontSize(int) override;
80 void SetDefaultTextEncodingName(const WebString&) override; 80 void SetDefaultTextEncodingName(const WebString&) override;
81 void SetDefaultVideoPosterURL(const WebString&) override; 81 void SetDefaultVideoPosterURL(const WebString&) override;
82 void SetDeviceScaleAdjustment(float) override; 82 void SetDeviceScaleAdjustment(float) override;
83 83
84 void SetDisableReadingFromCanvas(bool) override; 84 void SetDisableReadingFromCanvas(bool) override;
85 void SetDoubleTapToZoomEnabled(bool) override; 85 void SetDoubleTapToZoomEnabled(bool) override;
86 void SetDownloadableBinaryFontsEnabled(bool) override; 86 void SetDownloadableBinaryFontsEnabled(bool) override;
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 bool clobber_user_agent_initial_scale_quirk_; 270 bool clobber_user_agent_initial_scale_quirk_;
271 float expensive_background_throttling_cpu_budget_; 271 float expensive_background_throttling_cpu_budget_;
272 float expensive_background_throttling_initial_budget_; 272 float expensive_background_throttling_initial_budget_;
273 float expensive_background_throttling_max_budget_; 273 float expensive_background_throttling_max_budget_;
274 float expensive_background_throttling_max_delay_; 274 float expensive_background_throttling_max_delay_;
275 }; 275 };
276 276
277 } // namespace blink 277 } // namespace blink
278 278
279 #endif 279 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698