| Index: third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/PannerNode.h b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| index 56d632d253103e910d26ef7e68f315a70609b483..920f0ea97bfc30362abb5582e97702ed8c306885 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| @@ -104,7 +104,6 @@ public:
|
| void setConeOuterGain(double);
|
|
|
| void markPannerAsDirty(unsigned);
|
| - void updateDirtyState();
|
|
|
| double tailTime() const override { return m_panner ? m_panner->tailTime() : 0; }
|
| double latencyTime() const override { return m_panner ? m_panner->latencyTime() : 0; }
|
| @@ -148,6 +147,7 @@ private:
|
|
|
| bool isAzimuthElevationDirty() const { return m_isAzimuthElevationDirty; }
|
| bool isDistanceConeGainDirty() const { return m_isDistanceConeGainDirty; }
|
| + void updateDirtyState();
|
|
|
| // This Persistent doesn't make a reference cycle including the owner
|
| // PannerNode.
|
|
|