| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 class InterfaceRegistry; | 28 class InterfaceRegistry; |
| 29 class InterfaceProvider; | 29 class InterfaceProvider; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace ui { | 32 namespace ui { |
| 33 struct AXActionData; | 33 struct AXActionData; |
| 34 } | 34 } |
| 35 | 35 |
| 36 namespace content { | 36 namespace content { |
| 37 class AssociatedInterfaceProvider; | 37 class AssociatedInterfaceProvider; |
| 38 class AssociatedInterfaceRegistry; | |
| 39 class RenderProcessHost; | 38 class RenderProcessHost; |
| 40 class RenderViewHost; | 39 class RenderViewHost; |
| 41 class RenderWidgetHostView; | 40 class RenderWidgetHostView; |
| 42 class SiteInstance; | 41 class SiteInstance; |
| 43 struct FileChooserFileInfo; | 42 struct FileChooserFileInfo; |
| 44 | 43 |
| 45 // The interface provides a communication conduit with a frame in the renderer. | 44 // The interface provides a communication conduit with a frame in the renderer. |
| 46 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, | 45 class CONTENT_EXPORT RenderFrameHost : public IPC::Listener, |
| 47 public IPC::Sender { | 46 public IPC::Sender { |
| 48 public: | 47 public: |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 221 |
| 223 private: | 222 private: |
| 224 // This interface should only be implemented inside content. | 223 // This interface should only be implemented inside content. |
| 225 friend class RenderFrameHostImpl; | 224 friend class RenderFrameHostImpl; |
| 226 RenderFrameHost() {} | 225 RenderFrameHost() {} |
| 227 }; | 226 }; |
| 228 | 227 |
| 229 } // namespace content | 228 } // namespace content |
| 230 | 229 |
| 231 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ | 230 #endif // CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_ |
| OLD | NEW |