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

Side by Side Diff: third_party/WebKit/Source/core/frame/Settings.in

Issue 2341843002: Invalidate the text autosizer on meta viewport settings changes (Closed)
Patch Set: Created 4 years, 3 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 # Defines properties which are available on the Settings object. 1 # Defines properties which are available on the Settings object.
2 # 2 #
3 # Please think carefully before adding a new Setting. Some questions to 3 # Please think carefully before adding a new Setting. Some questions to
4 # consider are: 4 # consider are:
5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things 5 # - Should this be a RuntimeEnabledFeature instead? Settings are for things
6 # which we support either values of at runtime. Features are set at renderer 6 # which we support either values of at runtime. Features are set at renderer
7 # process startup and are never changed. Features also tend to be set to a 7 # process startup and are never changed. Features also tend to be set to a
8 # value based on the platform or the stability of the code in question, where 8 # value based on the platform or the stability of the code in question, where
9 # as settings both codepaths need to be stable. 9 # as settings both codepaths need to be stable.
10 # - How will you ensure test coverage of all relevant values of your setting? 10 # - How will you ensure test coverage of all relevant values of your setting?
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 backgroundHtmlParserPendingTokenLimit type=unsigned, initial=0 254 backgroundHtmlParserPendingTokenLimit type=unsigned, initial=0
255 255
256 # Html preload scanning is a fast, early scan of HTML documents to find loadable 256 # Html preload scanning is a fast, early scan of HTML documents to find loadable
257 # resources before the parser advances to them. If it is disabled, resources wil l 257 # resources before the parser advances to them. If it is disabled, resources wil l
258 # be loaded later. 258 # be loaded later.
259 doHtmlPreloadScanning initial=true 259 doHtmlPreloadScanning initial=true
260 260
261 pluginsEnabled initial=false 261 pluginsEnabled initial=false
262 262
263 viewportEnabled initial=false, invalidate=ViewportDescription 263 viewportEnabled initial=false, invalidate=ViewportDescription
264 viewportMetaEnabled initial=false 264 viewportMetaEnabled initial=false, invalidate=ViewportDescription
265 265
266 dnsPrefetchingEnabled initial=false, invalidate=DNSPrefetching 266 dnsPrefetchingEnabled initial=false, invalidate=DNSPrefetching
267 267
268 dataSaverEnabled initial=false 268 dataSaverEnabled initial=false
269 269
270 # FIXME: This is a temporary flag and should be removed 270 # FIXME: This is a temporary flag and should be removed
271 # when squashing is ready. (crbug.com/261605) 271 # when squashing is ready. (crbug.com/261605)
272 layerSquashingEnabled initial=false 272 layerSquashingEnabled initial=false
273 273
274 # Clients that execute script should call ScriptController::canExecuteScripts() 274 # Clients that execute script should call ScriptController::canExecuteScripts()
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 # Variant of the ParseHTMLOnMainThread experiment. This is designed to coalesce 410 # Variant of the ParseHTMLOnMainThread experiment. This is designed to coalesce
411 # TokenizedChunks when the experiment is running in threaded mode. 411 # TokenizedChunks when the experiment is running in threaded mode.
412 parseHTMLOnMainThreadCoalesceChunks initial=false 412 parseHTMLOnMainThreadCoalesceChunks initial=false
413 413
414 # Whether the CSSPreloadScanner is used for externally CSS preloads. NoPreload 414 # Whether the CSSPreloadScanner is used for externally CSS preloads. NoPreload
415 # indicates that the scanner will be used, but no preloads issued. 415 # indicates that the scanner will be used, but no preloads issued.
416 cssExternalScannerNoPreload initial=false 416 cssExternalScannerNoPreload initial=false
417 cssExternalScannerPreload initial=false 417 cssExternalScannerPreload initial=false
418 418
419 browserSideNavigationEnabled initial=false 419 browserSideNavigationEnabled initial=false
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698