| Index: third_party/libjingle/overrides/init_webrtc.h
 | 
| diff --git a/third_party/libjingle/overrides/init_webrtc.h b/third_party/libjingle/overrides/init_webrtc.h
 | 
| index 4d06e9e549ce6b478bc15dc41ee2d694bc9e9920..c5c190c3350929e17d7daa688fd9bf7d5ef85e55 100644
 | 
| --- a/third_party/libjingle/overrides/init_webrtc.h
 | 
| +++ b/third_party/libjingle/overrides/init_webrtc.h
 | 
| @@ -23,8 +23,6 @@
 | 
|  
 | 
|  namespace webrtc {
 | 
|  class AudioDeviceModule;
 | 
| -class AudioProcessing;
 | 
| -class Config;
 | 
|  }  // namespace webrtc
 | 
|  
 | 
|  typedef std::string (*FieldTrialFindFullName)(const std::string& trial_name);
 | 
| @@ -40,9 +38,6 @@
 | 
|  
 | 
|  typedef void (*InitDiagnosticLoggingDelegateFunctionFunction)(
 | 
|      void (*DelegateFunction)(const std::string&));
 | 
| -
 | 
| -typedef webrtc::AudioProcessing* (*CreateWebRtcAudioProcessingFunction)(
 | 
| -    const webrtc::Config& config);
 | 
|  
 | 
|  // A typedef for the main initialize function in libpeerconnection.
 | 
|  // This will initialize logging in the module with the proper arguments
 | 
| @@ -61,8 +56,7 @@
 | 
|      webrtc::AddTraceEventPtr trace_add_trace_event,
 | 
|      CreateWebRtcMediaEngineFunction* create_media_engine,
 | 
|      DestroyWebRtcMediaEngineFunction* destroy_media_engine,
 | 
| -    InitDiagnosticLoggingDelegateFunctionFunction* init_diagnostic_logging,
 | 
| -    CreateWebRtcAudioProcessingFunction* create_audio_processing);
 | 
| +    InitDiagnosticLoggingDelegateFunctionFunction* init_diagnostic_logging);
 | 
|  
 | 
|  #if !defined(LIBPEERCONNECTION_IMPLEMENTATION)
 | 
|  // Load and initialize the shared WebRTC module (libpeerconnection).
 | 
| @@ -71,11 +65,6 @@
 | 
|  // If not called explicitly, this function will still be called from the main
 | 
|  // CreateWebRtcMediaEngine factory function the first time it is called.
 | 
|  bool InitializeWebRtcModule();
 | 
| -
 | 
| -// Return a webrtc::AudioProcessing object.
 | 
| -webrtc::AudioProcessing* CreateWebRtcAudioProcessing(
 | 
| -    const webrtc::Config& config);
 | 
| -
 | 
|  #endif
 | 
|  
 | 
|  #endif // THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_
 | 
| 
 |