OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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. |
| 4 |
| 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
| 7 |
| 8 #include "content/common/content_export.h" |
| 9 #include "ipc/ipc_listener.h" |
| 10 #include "ipc/ipc_sender.h" |
| 11 |
| 12 namespace content { |
| 13 |
| 14 class CONTENT_EXPORT RenderFrame : public IPC::Listener, |
| 15 public IPC::Sender { |
| 16 protected: |
| 17 virtual ~RenderFrame() {} |
| 18 |
| 19 private: |
| 20 // This interface should only be implemented inside content. |
| 21 friend class RenderFrameImpl; |
| 22 RenderFrame() {} |
| 23 }; |
| 24 |
| 25 } // namespace content |
| 26 |
| 27 #endif // CONTENT_PUBLIC_RENDERER_RENDER_FRAME_H_ |
OLD | NEW |