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

Side by Side Diff: Source/core/workers/WorkerContext.idl

Issue 14882009: Remove DOM prefix from several IDL interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/scripts/name_macros.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 attribute WorkerLocationConstructor WorkerLocation; 62 attribute WorkerLocationConstructor WorkerLocation;
63 63
64 attribute MessageChannelConstructor MessageChannel; 64 attribute MessageChannelConstructor MessageChannel;
65 attribute EventSourceConstructor EventSource; 65 attribute EventSourceConstructor EventSource;
66 attribute XMLHttpRequestConstructor XMLHttpRequest; 66 attribute XMLHttpRequestConstructor XMLHttpRequest;
67 67
68 attribute BlobConstructor Blob; 68 attribute BlobConstructor Blob;
69 attribute FileReaderConstructor FileReader; 69 attribute FileReaderConstructor FileReader;
70 attribute FileReaderSyncConstructor FileReaderSync; 70 attribute FileReaderSyncConstructor FileReaderSync;
71 71
72 attribute DOMURLConstructor URL; 72 attribute URLConstructor URL;
73 attribute DOMURLConstructor webkitURL; // FIXME: deprecate this. 73 attribute URLConstructor webkitURL; // FIXME: deprecate this.
74 74
75 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operator 75 attribute ArrayBufferConstructor ArrayBuffer; // Usable with new operator
76 attribute Int8ArrayConstructor Int8Array; // Usable with new operator 76 attribute Int8ArrayConstructor Int8Array; // Usable with new operator
77 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator 77 attribute Uint8ArrayConstructor Uint8Array; // Usable with new operator
78 attribute Uint8ClampedArrayConstructor Uint8ClampedArray; // Usable with new operator 78 attribute Uint8ClampedArrayConstructor Uint8ClampedArray; // Usable with new operator
79 attribute Int16ArrayConstructor Int16Array; // Usable with new operator 79 attribute Int16ArrayConstructor Int16Array; // Usable with new operator
80 attribute Uint16ArrayConstructor Uint16Array; // Usable with new operator 80 attribute Uint16ArrayConstructor Uint16Array; // Usable with new operator
81 attribute Int32ArrayConstructor Int32Array; // Usable with new operator 81 attribute Int32ArrayConstructor Int32Array; // Usable with new operator
82 attribute Uint32ArrayConstructor Uint32Array; // Usable with new operator 82 attribute Uint32ArrayConstructor Uint32Array; // Usable with new operator
83 attribute Float32ArrayConstructor Float32Array; // Usable with new operator 83 attribute Float32ArrayConstructor Float32Array; // Usable with new operator
84 attribute Float64ArrayConstructor Float64Array; // Usable with new operator 84 attribute Float64ArrayConstructor Float64Array; // Usable with new operator
85 attribute DataViewConstructor DataView; // Usable with new operator 85 attribute DataViewConstructor DataView; // Usable with new operator
86 }; 86 };
87 87
OLDNEW
« no previous file with comments | « Source/core/scripts/name_macros.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698