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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2749503002: [wasm] enable wasm structured cloning in specific cases (Closed)
Patch Set: async Created 3 years, 8 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 // Returns a string with information about the mouse cursor used at the spec ified client location. 254 // Returns a string with information about the mouse cursor used at the spec ified client location.
255 DOMString getCurrentCursorInfo(); 255 DOMString getCurrentCursorInfo();
256 256
257 readonly attribute boolean cursorUpdatePending; 257 readonly attribute boolean cursorUpdatePending;
258 258
259 DOMString markerTextForListItem(Element element); 259 DOMString markerTextForListItem(Element element);
260 260
261 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); 261 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer);
262 ArrayBuffer serializeObject(SerializedScriptValue obj); 262 ArrayBuffer serializeObject(SerializedScriptValue obj);
263 263
264 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe r);
265 ArrayBuffer serializeWithInlineWasm(any obj);
266
267
264 void forceReload(boolean endToEnd); 268 void forceReload(boolean endToEnd);
265 269
266 DOMString getImageSourceURL(Element element); 270 DOMString getImageSourceURL(Element element);
267 271
268 DOMString selectMenuListText(HTMLSelectElement select); 272 DOMString selectMenuListText(HTMLSelectElement select);
269 boolean isSelectPopupVisible(Node node); 273 boolean isSelectPopupVisible(Node node);
270 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex); 274 boolean selectPopupItemStyleIsRtl(Node select, long itemIndex);
271 long selectPopupItemStyleFontHeight(Node select, long itemIndex); 275 long selectPopupItemStyleFontHeight(Node select, long itemIndex);
272 void resetTypeAheadSession(HTMLSelectElement select); 276 void resetTypeAheadSession(HTMLSelectElement select);
273 277
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 DOMString getProgrammaticScrollAnimationState(Node node); 370 DOMString getProgrammaticScrollAnimationState(Node node);
367 371
368 ClientRect visualRect(Node node); 372 ClientRect visualRect(Node node);
369 373
370 OriginTrialsTest originTrialsTest(); 374 OriginTrialsTest originTrialsTest();
371 375
372 void crash(); 376 void crash();
373 377
374 void setIsLowEndDevice(boolean isLowEndDevice); 378 void setIsLowEndDevice(boolean isLowEndDevice);
375 }; 379 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698