Chromium Code Reviews| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 194 [RaisesException, TypeChecking=Interface] void setIsCursorVisible(Document d ocument, boolean isVisible); | 194 [RaisesException, TypeChecking=Interface] void setIsCursorVisible(Document d ocument, boolean isVisible); |
| 195 | 195 |
| 196 void mediaPlayerRequestFullscreen(HTMLMediaElement mediaElement); | 196 void mediaPlayerRequestFullscreen(HTMLMediaElement mediaElement); |
| 197 double effectiveMediaVolume(HTMLMediaElement mediaElement); | 197 double effectiveMediaVolume(HTMLMediaElement mediaElement); |
| 198 | 198 |
| 199 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); | 199 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); |
| 200 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme); | 200 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme); |
| 201 | 201 |
| 202 TypeConversions typeConversions(); | 202 TypeConversions typeConversions(); |
| 203 | 203 |
| 204 // This is enabled only in Debug builds. | 204 // These is enabled only in Debug builds. |
|
haraken
2014/08/27 08:37:39
These => This
bashi
2014/08/27 10:54:01
Oh.. Done.
| |
| 205 // This is because we want to avoid putting the byte stream of testing priva te scripts | 205 // This is because we want to avoid putting the byte stream of testing priva te scripts |
| 206 // into the binary of Release builds. | 206 // into the binary of Release builds. |
| 207 PrivateScriptTest privateScriptTest(); | 207 PrivateScriptTest privateScriptTest(); |
| 208 | 208 |
| 209 DOMString[] getReferencedFilePaths(); | 209 DOMString[] getReferencedFilePaths(); |
| 210 | 210 |
| 211 // These functions both reset the tracked repaint rects. They are inteded to be used in the following order: | 211 // These functions both reset the tracked repaint rects. They are inteded to be used in the following order: |
| 212 // startTrackingRepaints, repaintRectsAsText, stopTrackingRepaints. | 212 // startTrackingRepaints, repaintRectsAsText, stopTrackingRepaints. |
| 213 [RaisesException, TypeChecking=Interface] void startTrackingRepaints(Documen t document); | 213 [RaisesException, TypeChecking=Interface] void startTrackingRepaints(Documen t document); |
| 214 [RaisesException, TypeChecking=Interface] void stopTrackingRepaints(Document document); | 214 [RaisesException, TypeChecking=Interface] void stopTrackingRepaints(Document document); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 270 void setNetworkStateNotifierTestOnly(boolean testOnly); | 270 void setNetworkStateNotifierTestOnly(boolean testOnly); |
| 271 [RaisesException] void setNetworkConnectionInfo(DOMString type); | 271 [RaisesException] void setNetworkConnectionInfo(DOMString type); |
| 272 | 272 |
| 273 // This function is for testing HitRegions on Canvas2D. | 273 // This function is for testing HitRegions on Canvas2D. |
| 274 unsigned long countHitRegions(CanvasRenderingContext2D context); | 274 unsigned long countHitRegions(CanvasRenderingContext2D context); |
| 275 | 275 |
| 276 DOMString serializeNavigationMarkup(); | 276 DOMString serializeNavigationMarkup(); |
| 277 void hideAllTransitionElements(); | 277 void hideAllTransitionElements(); |
| 278 | 278 |
| 279 [RaisesException] void forcePluginPlaceholder(HTMLElement plugin, DOMString htmlSource); | 279 [RaisesException] void forcePluginPlaceholder(HTMLElement plugin, DOMString htmlSource); |
| 280 | |
| 281 DictionaryTest dictionaryTest(); | |
| 280 }; | 282 }; |
| OLD | NEW |