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

Unified Diff: Source/modules/webaudio/AudioScheduledSourceNode.h

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webaudio/AudioNode.cpp ('k') | Source/modules/webaudio/AudioScheduledSourceNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/AudioScheduledSourceNode.h
diff --git a/Source/modules/webaudio/AudioScheduledSourceNode.h b/Source/modules/webaudio/AudioScheduledSourceNode.h
index a0f975d375fb49130db4e12cc31e408e66ee5be3..e89cd76bf0d0df729dbcefad2982466f9cdbda4d 100644
--- a/Source/modules/webaudio/AudioScheduledSourceNode.h
+++ b/Source/modules/webaudio/AudioScheduledSourceNode.h
@@ -68,9 +68,9 @@ public:
AudioScheduledSourceNode(AudioContext*, float sampleRate);
// Scheduling.
- void start(ExceptionState& es) { start(0.0, es); }
+ void start(ExceptionState& exceptionState) { start(0.0, exceptionState); }
void start(double when, ExceptionState&);
- void stop(ExceptionState& es) { stop(0.0, es); }
+ void stop(ExceptionState& exceptionState) { stop(0.0, exceptionState); }
void stop(double when, ExceptionState&);
unsigned short playbackState() const { return static_cast<unsigned short>(m_playbackState); }
« no previous file with comments | « Source/modules/webaudio/AudioNode.cpp ('k') | Source/modules/webaudio/AudioScheduledSourceNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698