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

Side by Side Diff: Source/core/testing/InternalSettings.idl

Issue 106353005: Expose performance.memory in workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@Perf-Memory-SharedWorker
Patch Set: Created 6 years, 8 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 19 matching lines...) Expand all
30 // when the page cannot be accessed. (Such as during page tear-down.) 30 // when the page cannot be accessed. (Such as during page tear-down.)
31 [RaisesException] void setMockScrollbarsEnabled(boolean enabled); 31 [RaisesException] void setMockScrollbarsEnabled(boolean enabled);
32 [RaisesException] void setTouchEventEmulationEnabled(boolean enabled); 32 [RaisesException] void setTouchEventEmulationEnabled(boolean enabled);
33 [RaisesException] void setStandardFontFamily(DOMString family, DOMString scr ipt); 33 [RaisesException] void setStandardFontFamily(DOMString family, DOMString scr ipt);
34 [RaisesException] void setSerifFontFamily(DOMString family, DOMString script ); 34 [RaisesException] void setSerifFontFamily(DOMString family, DOMString script );
35 [RaisesException] void setSansSerifFontFamily(DOMString family, DOMString sc ript); 35 [RaisesException] void setSansSerifFontFamily(DOMString family, DOMString sc ript);
36 [RaisesException] void setFixedFontFamily(DOMString family, DOMString script ); 36 [RaisesException] void setFixedFontFamily(DOMString family, DOMString script );
37 [RaisesException] void setCursiveFontFamily(DOMString family, DOMString scri pt); 37 [RaisesException] void setCursiveFontFamily(DOMString family, DOMString scri pt);
38 [RaisesException] void setFantasyFontFamily(DOMString family, DOMString scri pt); 38 [RaisesException] void setFantasyFontFamily(DOMString family, DOMString scri pt);
39 [RaisesException] void setPictographFontFamily(DOMString family, DOMString s cript); 39 [RaisesException] void setPictographFontFamily(DOMString family, DOMString s cript);
40 [RaisesException] void setPreciseMemoryInfoEnabled(boolean enabled);
40 [RaisesException] void setTextAutosizingEnabled(boolean enabled); 41 [RaisesException] void setTextAutosizingEnabled(boolean enabled);
41 [RaisesException] void setTextAutosizingWindowSizeOverride(long width, long height); 42 [RaisesException] void setTextAutosizingWindowSizeOverride(long width, long height);
42 [RaisesException] void setAccessibilityFontScaleFactor(float fontScaleFactor ); 43 [RaisesException] void setAccessibilityFontScaleFactor(float fontScaleFactor );
43 [RaisesException] void setMediaTypeOverride(DOMString mediaTypeOverride); 44 [RaisesException] void setMediaTypeOverride(DOMString mediaTypeOverride);
44 [RaisesException] void setEditingBehavior(DOMString behavior); 45 [RaisesException] void setEditingBehavior(DOMString behavior);
45 [RaisesException] void setPasswordGenerationDecorationEnabled(boolean enable d); 46 [RaisesException] void setPasswordGenerationDecorationEnabled(boolean enable d);
46 [RaisesException] void setImagesEnabled(boolean enabled); 47 [RaisesException] void setImagesEnabled(boolean enabled);
47 [RaisesException] void setDefaultVideoPosterURL(DOMString poster); 48 [RaisesException] void setDefaultVideoPosterURL(DOMString poster);
48 [RaisesException] void setViewportEnabled(boolean enabled); 49 [RaisesException] void setViewportEnabled(boolean enabled);
49 50
50 // FIXME: This is a temporary flag and should be removed once accelerated 51 // FIXME: This is a temporary flag and should be removed once accelerated
51 // overflow scroll is ready (crbug.com/254111). 52 // overflow scroll is ready (crbug.com/254111).
52 [RaisesException] void setCompositorDrivenAcceleratedScrollingEnabled(boolea n enabled); 53 [RaisesException] void setCompositorDrivenAcceleratedScrollingEnabled(boolea n enabled);
53 54
54 // FIXME: This is a temporary flag and should be removed once squashing is 55 // FIXME: This is a temporary flag and should be removed once squashing is
55 // ready (crbug.com/261605). 56 // ready (crbug.com/261605).
56 [RaisesException] void setLayerSquashingEnabled(boolean enabled); 57 [RaisesException] void setLayerSquashingEnabled(boolean enabled);
57 58
58 // FIXME: The following are RuntimeEnabledFeatures and likely 59 // FIXME: The following are RuntimeEnabledFeatures and likely
59 // cannot be changed after process start. These setters should 60 // cannot be changed after process start. These setters should
60 // be removed or moved onto internals.runtimeFlags: 61 // be removed or moved onto internals.runtimeFlags:
61 void setAuthorShadowDOMForAnyElementEnabled(boolean enabled); 62 void setAuthorShadowDOMForAnyElementEnabled(boolean enabled);
62 void setCSSExclusionsEnabled(boolean enabled); 63 void setCSSExclusionsEnabled(boolean enabled);
63 void setLangAttributeAwareFormControlUIEnabled(boolean enabled); 64 void setLangAttributeAwareFormControlUIEnabled(boolean enabled);
64 void setOverlayScrollbarsEnabled(boolean enabled); 65 void setOverlayScrollbarsEnabled(boolean enabled);
65 void setStyleScopedEnabled(boolean enabled); 66 void setStyleScopedEnabled(boolean enabled);
66 void setExperimentalContentSecurityPolicyFeaturesEnabled(boolean enabled); 67 void setExperimentalContentSecurityPolicyFeaturesEnabled(boolean enabled);
67 }; 68 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698