| 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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 void setCapsLockState(boolean enabled); | 344 void setCapsLockState(boolean enabled); |
| 345 | 345 |
| 346 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms | 346 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms |
| 347 // support overlay scrollbars. | 347 // support overlay scrollbars. |
| 348 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); | 348 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); |
| 349 | 349 |
| 350 [RaisesException] double monotonicTimeToZeroBasedDocumentTime(double platfor
mTime); | 350 [RaisesException] double monotonicTimeToZeroBasedDocumentTime(double platfor
mTime); |
| 351 | 351 |
| 352 void setMediaElementNetworkState(HTMLMediaElement element, long state); | 352 void setMediaElementNetworkState(HTMLMediaElement element, long state); |
| 353 | 353 |
| 354 // TODO(liberato): remove once autoplay gesture override experiment conclude
s. | |
| 355 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); | |
| 356 | |
| 357 DOMString getScrollAnimationState(Node node); | 354 DOMString getScrollAnimationState(Node node); |
| 358 | 355 |
| 359 DOMString getProgrammaticScrollAnimationState(Node node); | 356 DOMString getProgrammaticScrollAnimationState(Node node); |
| 360 | 357 |
| 361 ClientRect visualRect(Node node); | 358 ClientRect visualRect(Node node); |
| 362 | 359 |
| 363 OriginTrialsTest originTrialsTest(); | 360 OriginTrialsTest originTrialsTest(); |
| 364 | 361 |
| 365 void crash(); | 362 void crash(); |
| 366 | 363 |
| 367 void setIsLowEndDevice(boolean isLowEndDevice); | 364 void setIsLowEndDevice(boolean isLowEndDevice); |
| 368 }; | 365 }; |
| OLD | NEW |