| Index: remoting/host/host_extension_session.h
 | 
| diff --git a/remoting/host/host_extension_session.h b/remoting/host/host_extension_session.h
 | 
| index 1e71180e3a33f6e04faa2715b0ffda535a9374eb..a4a0bd710abd7c776688028bd9b4ce2bb52d32c3 100644
 | 
| --- a/remoting/host/host_extension_session.h
 | 
| +++ b/remoting/host/host_extension_session.h
 | 
| @@ -8,7 +8,7 @@
 | 
|  #include "base/memory/scoped_ptr.h"
 | 
|  
 | 
|  namespace webrtc {
 | 
| -class ScreenCapturer;
 | 
| +class DesktopCapturer;
 | 
|  }
 | 
|  
 | 
|  namespace remoting {
 | 
| @@ -30,8 +30,8 @@ class HostExtensionSession {
 | 
|    // Optional hook functions for HostExtensions which need to wrap or replace
 | 
|    // parts of the video, audio, input, etc pipelines.
 | 
|    // These are called in response to ResetVideoPipeline().
 | 
| -  virtual scoped_ptr<webrtc::ScreenCapturer> OnCreateVideoCapturer(
 | 
| -      scoped_ptr<webrtc::ScreenCapturer> capturer);
 | 
| +  virtual scoped_ptr<webrtc::DesktopCapturer> OnCreateVideoCapturer(
 | 
| +      scoped_ptr<webrtc::DesktopCapturer> capturer);
 | 
|    virtual scoped_ptr<VideoEncoder> OnCreateVideoEncoder(
 | 
|        scoped_ptr<VideoEncoder> encoder);
 | 
|    virtual bool ModifiesVideoPipeline() const;
 | 
| @@ -48,4 +48,3 @@ class HostExtensionSession {
 | 
|  }  // namespace remoting
 | 
|  
 | 
|  #endif  // REMOTING_HOST_HOST_EXTENSION_SESSION_H_
 | 
| -
 | 
| 
 |