Removed unused VideoCaptureCapability parameters.
[chromium-blink-merge.git] / content / public / browser / render_frame_host.h
blob9b6344f3bae54ec65a6bffd35bc7e62a51d92871
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
6 #define CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
8 #include "content/common/content_export.h"
9 #include "ipc/ipc_listener.h"
10 #include "ipc/ipc_sender.h"
12 namespace content {
14 // The interface provides a communication conduit with a frame in the renderer.
15 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener,
16 public IPC::Sender {
17 public:
18 virtual ~RenderFrameHost() {}
20 private:
21 // This interface should only be implemented inside content.
22 friend class RenderFrameHostImpl;
23 RenderFrameHost() {}
26 } // namespace content
28 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_