Index: content/browser/renderer_host/media/video_capture_host.h |
=================================================================== |
--- content/browser/renderer_host/media/video_capture_host.h (revision 130181) |
+++ content/browser/renderer_host/media/video_capture_host.h (working copy) |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
// |
@@ -45,20 +45,18 @@ |
#include "content/public/browser/browser_message_filter.h" |
#include "ipc/ipc_message.h" |
+class AudioManager; |
+ |
namespace content { |
class ResourceContext; |
} // namespace content |
-namespace media { |
-class AudioManager; |
-} |
- |
class CONTENT_EXPORT VideoCaptureHost |
: public content::BrowserMessageFilter, |
public VideoCaptureControllerEventHandler { |
public: |
explicit VideoCaptureHost(content::ResourceContext* resource_context, |
- media::AudioManager* audio_manager); |
+ AudioManager* audio_manager); |
// content::BrowserMessageFilter implementation. |
virtual void OnChannelClosing() OVERRIDE; |
@@ -147,7 +145,7 @@ |
// Used to get a pointer to VideoCaptureManager to start/stop capture devices. |
content::ResourceContext* resource_context_; |
- media::AudioManager* audio_manager_; |
+ AudioManager* audio_manager_; |
DISALLOW_COPY_AND_ASSIGN(VideoCaptureHost); |
}; |