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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 92 |
93 void setDefaultVideoPosterURL(const String& url, ExceptionState&); | 93 void setDefaultVideoPosterURL(const String& url, ExceptionState&); |
94 void setEditingBehavior(const String&, ExceptionState&); | 94 void setEditingBehavior(const String&, ExceptionState&); |
95 void setImagesEnabled(bool, ExceptionState&); | 95 void setImagesEnabled(bool, ExceptionState&); |
96 void setMediaTypeOverride(const String& mediaType, ExceptionState&); | 96 void setMediaTypeOverride(const String& mediaType, ExceptionState&); |
97 void setMockScrollbarsEnabled(bool, ExceptionState&); | 97 void setMockScrollbarsEnabled(bool, ExceptionState&); |
98 void setPasswordGenerationDecorationEnabled(bool, ExceptionState&); | 98 void setPasswordGenerationDecorationEnabled(bool, ExceptionState&); |
99 void setTextAutosizingEnabled(bool, ExceptionState&); | 99 void setTextAutosizingEnabled(bool, ExceptionState&); |
100 void setAccessibilityFontScaleFactor(float fontScaleFactor, ExceptionState&)
; | 100 void setAccessibilityFontScaleFactor(float fontScaleFactor, ExceptionState&)
; |
101 void setTextAutosizingWindowSizeOverride(int width, int height, ExceptionSta
te&); | 101 void setTextAutosizingWindowSizeOverride(int width, int height, ExceptionSta
te&); |
102 void setTouchEventEmulationEnabled(bool, ExceptionState&); | |
103 void setViewportEnabled(bool, ExceptionState&); | 102 void setViewportEnabled(bool, ExceptionState&); |
104 | 103 |
105 // FIXME: This is a temporary flag and should be removed once accelerated | 104 // FIXME: This is a temporary flag and should be removed once accelerated |
106 // overflow scroll is ready (crbug.com/254111). | 105 // overflow scroll is ready (crbug.com/254111). |
107 void setCompositorDrivenAcceleratedScrollingEnabled(bool, ExceptionState&); | 106 void setCompositorDrivenAcceleratedScrollingEnabled(bool, ExceptionState&); |
108 | 107 |
109 // FIXME: This is a temporary flag and should be removed once squashing is | 108 // FIXME: This is a temporary flag and should be removed once squashing is |
110 // ready (crbug.com/261605). | 109 // ready (crbug.com/261605). |
111 void setLayerSquashingEnabled(bool, ExceptionState&); | 110 void setLayerSquashingEnabled(bool, ExceptionState&); |
112 | 111 |
(...skipping 16 matching lines...) Expand all Loading... |
129 Page* page() const { return m_page; } | 128 Page* page() const { return m_page; } |
130 static const char* supplementName(); | 129 static const char* supplementName(); |
131 | 130 |
132 Page* m_page; | 131 Page* m_page; |
133 Backup m_backup; | 132 Backup m_backup; |
134 }; | 133 }; |
135 | 134 |
136 } // namespace WebCore | 135 } // namespace WebCore |
137 | 136 |
138 #endif | 137 #endif |
OLD | NEW |