| OLD | NEW |
| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 void setTextTrackKindUserPreference(const String& preference, | 118 void setTextTrackKindUserPreference(const String& preference, |
| 119 ExceptionState&); | 119 ExceptionState&); |
| 120 void setAccessibilityFontScaleFactor(float fontScaleFactor, ExceptionState&); | 120 void setAccessibilityFontScaleFactor(float fontScaleFactor, ExceptionState&); |
| 121 void setTextAutosizingWindowSizeOverride(int width, | 121 void setTextAutosizingWindowSizeOverride(int width, |
| 122 int height, | 122 int height, |
| 123 ExceptionState&); | 123 ExceptionState&); |
| 124 void setViewportEnabled(bool, ExceptionState&); | 124 void setViewportEnabled(bool, ExceptionState&); |
| 125 void setViewportMetaEnabled(bool, ExceptionState&); | 125 void setViewportMetaEnabled(bool, ExceptionState&); |
| 126 void setViewportStyle(const String& preference, ExceptionState&); | 126 void setViewportStyle(const String& preference, ExceptionState&); |
| 127 void setCompositorWorkerEnabled(bool, ExceptionState&); | 127 void setCompositorWorkerEnabled(bool, ExceptionState&); |
| 128 void setPresentationReceiver(bool, ExceptionState&); |
| 128 | 129 |
| 129 // FIXME: The following are RuntimeEnabledFeatures and likely | 130 // FIXME: The following are RuntimeEnabledFeatures and likely |
| 130 // cannot be changed after process start. These setters should | 131 // cannot be changed after process start. These setters should |
| 131 // be removed or moved onto internals.runtimeFlags: | 132 // be removed or moved onto internals.runtimeFlags: |
| 132 void setCSSStickyPositionEnabled(bool); | 133 void setCSSStickyPositionEnabled(bool); |
| 133 void setLangAttributeAwareFormControlUIEnabled(bool); | 134 void setLangAttributeAwareFormControlUIEnabled(bool); |
| 134 void setOverlayScrollbarsEnabled(bool); | 135 void setOverlayScrollbarsEnabled(bool); |
| 135 void setExperimentalContentSecurityPolicyFeaturesEnabled(bool); | 136 void setExperimentalContentSecurityPolicyFeaturesEnabled(bool); |
| 136 void setImageAnimationPolicy(const String&, ExceptionState&); | 137 void setImageAnimationPolicy(const String&, ExceptionState&); |
| 137 void setScrollTopLeftInteropEnabled(bool); | 138 void setScrollTopLeftInteropEnabled(bool); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 152 Page* page() const { return m_page; } | 153 Page* page() const { return m_page; } |
| 153 static const char* supplementName(); | 154 static const char* supplementName(); |
| 154 | 155 |
| 155 WeakMember<Page> m_page; | 156 WeakMember<Page> m_page; |
| 156 Backup m_backup; | 157 Backup m_backup; |
| 157 }; | 158 }; |
| 158 | 159 |
| 159 } // namespace blink | 160 } // namespace blink |
| 160 | 161 |
| 161 #endif // InternalSettings_h | 162 #endif // InternalSettings_h |
| OLD | NEW |