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

Side by Side Diff: public/web/WebSettings.h

Issue 979033003: Move code from StyleResolver to ViewportStyleResolver. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 5 years, 9 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
« no previous file with comments | « Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 virtual void setSyncXHRInDocumentsEnabled(bool) = 0; 228 virtual void setSyncXHRInDocumentsEnabled(bool) = 0;
229 virtual void setTextAreasAreResizable(bool) = 0; 229 virtual void setTextAreasAreResizable(bool) = 0;
230 virtual void setTextAutosizingEnabled(bool) = 0; 230 virtual void setTextAutosizingEnabled(bool) = 0;
231 virtual void setAccessibilityFontScaleFactor(float) = 0; 231 virtual void setAccessibilityFontScaleFactor(float) = 0;
232 virtual void setThreadedScrollingEnabled(bool) = 0; 232 virtual void setThreadedScrollingEnabled(bool) = 0;
233 virtual void setTouchDragDropEnabled(bool) = 0; 233 virtual void setTouchDragDropEnabled(bool) = 0;
234 virtual void setTouchEditingEnabled(bool) = 0; 234 virtual void setTouchEditingEnabled(bool) = 0;
235 virtual void setUnifiedTextCheckerEnabled(bool) = 0; 235 virtual void setUnifiedTextCheckerEnabled(bool) = 0;
236 virtual void setUnsafePluginPastingEnabled(bool) = 0; 236 virtual void setUnsafePluginPastingEnabled(bool) = 0;
237 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool) = 0; 237 virtual void setUseLegacyBackgroundSizeShorthandBehavior(bool) = 0;
238 virtual void setUseMobileViewportStyle(bool) = 0;
238 virtual void setUseSolidColorScrollbars(bool) = 0; 239 virtual void setUseSolidColorScrollbars(bool) = 0;
239 virtual void setUseWideViewport(bool) = 0; 240 virtual void setUseWideViewport(bool) = 0;
240 virtual void setUsesEncodingDetector(bool) = 0; 241 virtual void setUsesEncodingDetector(bool) = 0;
241 virtual void setV8CacheOptions(V8CacheOptions) = 0; 242 virtual void setV8CacheOptions(V8CacheOptions) = 0;
242 virtual void setValidationMessageTimerMagnification(int) = 0; 243 virtual void setValidationMessageTimerMagnification(int) = 0;
243 virtual void setViewportEnabled(bool) = 0; 244 virtual void setViewportEnabled(bool) = 0;
244 virtual void setViewportMetaEnabled(bool) = 0; 245 virtual void setViewportMetaEnabled(bool) = 0;
245 virtual void setViewportMetaLayoutSizeQuirk(bool) = 0; 246 virtual void setViewportMetaLayoutSizeQuirk(bool) = 0;
246 virtual void setViewportMetaMergeContentQuirk(bool) = 0; 247 virtual void setViewportMetaMergeContentQuirk(bool) = 0;
247 virtual void setViewportMetaNonUserScalableQuirk(bool) = 0; 248 virtual void setViewportMetaNonUserScalableQuirk(bool) = 0;
248 virtual void setViewportMetaZeroValuesQuirk(bool) = 0; 249 virtual void setViewportMetaZeroValuesQuirk(bool) = 0;
249 virtual void setWebAudioEnabled(bool) = 0; 250 virtual void setWebAudioEnabled(bool) = 0;
250 virtual void setWebGLErrorsToConsoleEnabled(bool) = 0; 251 virtual void setWebGLErrorsToConsoleEnabled(bool) = 0;
251 virtual void setWebSecurityEnabled(bool) = 0; 252 virtual void setWebSecurityEnabled(bool) = 0;
252 virtual void setWideViewportQuirkEnabled(bool) = 0; 253 virtual void setWideViewportQuirkEnabled(bool) = 0;
253 virtual void setXSSAuditorEnabled(bool) = 0; 254 virtual void setXSSAuditorEnabled(bool) = 0;
254 255
255 protected: 256 protected:
256 ~WebSettings() { } 257 ~WebSettings() { }
257 }; 258 };
258 259
259 } // namespace blink 260 } // namespace blink
260 261
261 #endif 262 #endif
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698