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

Side by Side Diff: third_party/WebKit/Source/core/testing/InternalSettings.h

Issue 1547893003: WIP - compositor worker mega patch. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 void setAccessibilityFontScaleFactor(float fontScaleFactor, ExceptionState&) ; 116 void setAccessibilityFontScaleFactor(float fontScaleFactor, ExceptionState&) ;
117 void setTextAutosizingWindowSizeOverride(int width, int height, ExceptionSta te&); 117 void setTextAutosizingWindowSizeOverride(int width, int height, ExceptionSta te&);
118 void setViewportEnabled(bool, ExceptionState&); 118 void setViewportEnabled(bool, ExceptionState&);
119 void setViewportMetaEnabled(bool, ExceptionState&); 119 void setViewportMetaEnabled(bool, ExceptionState&);
120 void setCompositorWorkerEnabled(bool, ExceptionState&); 120 void setCompositorWorkerEnabled(bool, ExceptionState&);
121 121
122 // FIXME: The following are RuntimeEnabledFeatures and likely 122 // FIXME: The following are RuntimeEnabledFeatures and likely
123 // cannot be changed after process start. These setters should 123 // cannot be changed after process start. These setters should
124 // be removed or moved onto internals.runtimeFlags: 124 // be removed or moved onto internals.runtimeFlags:
125 void setAuthorShadowDOMForAnyElementEnabled(bool); 125 void setAuthorShadowDOMForAnyElementEnabled(bool);
126 void setCompositorWorkerEnabled(bool);
126 void setCSSStickyPositionEnabled(bool); 127 void setCSSStickyPositionEnabled(bool);
127 void setLangAttributeAwareFormControlUIEnabled(bool); 128 void setLangAttributeAwareFormControlUIEnabled(bool);
128 void setOverlayScrollbarsEnabled(bool); 129 void setOverlayScrollbarsEnabled(bool);
129 void setExperimentalContentSecurityPolicyFeaturesEnabled(bool); 130 void setExperimentalContentSecurityPolicyFeaturesEnabled(bool);
130 void setImageColorProfilesEnabled(bool); 131 void setImageColorProfilesEnabled(bool);
131 void setImageAnimationPolicy(const String&, ExceptionState&); 132 void setImageAnimationPolicy(const String&, ExceptionState&);
132 void setScrollTopLeftInteropEnabled(bool); 133 void setScrollTopLeftInteropEnabled(bool);
133 void setLinkHeaderEnabled(bool); 134 void setLinkHeaderEnabled(bool);
134 135
135 DECLARE_VIRTUAL_TRACE(); 136 DECLARE_VIRTUAL_TRACE();
(...skipping 12 matching lines...) Expand all
148 Page* page() const { return m_page; } 149 Page* page() const { return m_page; }
149 static const char* supplementName(); 150 static const char* supplementName();
150 151
151 RawPtrWillBeWeakMember<Page> m_page; 152 RawPtrWillBeWeakMember<Page> m_page;
152 Backup m_backup; 153 Backup m_backup;
153 }; 154 };
154 155
155 } // namespace blink 156 } // namespace blink
156 157
157 #endif // InternalSettings_h 158 #endif // InternalSettings_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698