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

Side by Side Diff: third_party/WebCore/Modules/webaudio/Oscillator.idl

Issue 10983049: Roll IDL to multivm@910 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012, Google Inc. All rights reserved. 2 * Copyright (C) 2012, Google 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 const unsigned short UNSCHEDULED_STATE = 0; 43 const unsigned short UNSCHEDULED_STATE = 0;
44 const unsigned short SCHEDULED_STATE = 1; 44 const unsigned short SCHEDULED_STATE = 1;
45 const unsigned short PLAYING_STATE = 2; 45 const unsigned short PLAYING_STATE = 2;
46 const unsigned short FINISHED_STATE = 3; 46 const unsigned short FINISHED_STATE = 3;
47 47
48 readonly attribute unsigned short playbackState; 48 readonly attribute unsigned short playbackState;
49 49
50 readonly attribute AudioParam frequency; // in Hertz 50 readonly attribute AudioParam frequency; // in Hertz
51 readonly attribute AudioParam detune; // in Cents 51 readonly attribute AudioParam detune; // in Cents
52 52
53 void start(in double when);
54 void stop(in double when);
55
56 #if defined(ENABLE_LEGACY_WEB_AUDIO) && ENABLE_LEGACY_WEB_AUDIO
53 void noteOn(in double when); 57 void noteOn(in double when);
54 void noteOff(in double when); 58 void noteOff(in double when);
59 #endif
60
55 void setWaveTable(in WaveTable waveTable); 61 void setWaveTable(in WaveTable waveTable);
56 62
57 }; 63 };
58 } 64 }
OLDNEW
« no previous file with comments | « third_party/WebCore/Modules/webaudio/AudioBufferSourceNode.idl ('k') | third_party/WebCore/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698