| 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 enum class WebCachePolicy; | 87 enum class WebCachePolicy; |
| 88 struct WebCompositionUnderline; | 88 struct WebCompositionUnderline; |
| 89 struct WebContextMenuData; | 89 struct WebContextMenuData; |
| 90 struct WebCursorInfo; | 90 struct WebCursorInfo; |
| 91 struct WebFindOptions; | 91 struct WebFindOptions; |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 namespace gfx { | 94 namespace gfx { |
| 95 class Point; | 95 class Point; |
| 96 class Range; | 96 class Range; |
| 97 class Rect; | |
| 98 } | 97 } |
| 99 | 98 |
| 100 namespace media { | 99 namespace media { |
| 101 class CdmFactory; | 100 class CdmFactory; |
| 102 class DecoderFactory; | 101 class DecoderFactory; |
| 103 class MediaPermission; | 102 class MediaPermission; |
| 104 class RemotingRendererController; | 103 class RemotingRendererController; |
| 105 class RemotingSinkObserver; | 104 class RemotingSinkObserver; |
| 106 class RendererWebMediaPlayerDelegate; | 105 class RendererWebMediaPlayerDelegate; |
| 107 class SurfaceManager; | 106 class SurfaceManager; |
| (...skipping 19 matching lines...) Expand all Loading... |
| 127 class DevToolsAgent; | 126 class DevToolsAgent; |
| 128 class DocumentState; | 127 class DocumentState; |
| 129 class ExternalPopupMenu; | 128 class ExternalPopupMenu; |
| 130 class HistoryEntry; | 129 class HistoryEntry; |
| 131 class ManifestManager; | 130 class ManifestManager; |
| 132 class MediaInterfaceProvider; | 131 class MediaInterfaceProvider; |
| 133 class MediaStreamDispatcher; | 132 class MediaStreamDispatcher; |
| 134 class MediaStreamRendererFactory; | 133 class MediaStreamRendererFactory; |
| 135 class MediaPermissionDispatcher; | 134 class MediaPermissionDispatcher; |
| 136 class NavigationState; | 135 class NavigationState; |
| 137 class PageState; | |
| 138 class PepperPluginInstanceImpl; | 136 class PepperPluginInstanceImpl; |
| 139 class PresentationDispatcher; | 137 class PresentationDispatcher; |
| 140 class PushMessagingDispatcher; | 138 class PushMessagingDispatcher; |
| 141 class RenderAccessibilityImpl; | 139 class RenderAccessibilityImpl; |
| 142 class RendererMediaPlayerManager; | 140 class RendererMediaPlayerManager; |
| 143 class RendererMediaSessionManager; | 141 class RendererMediaSessionManager; |
| 144 class RendererPpapiHost; | 142 class RendererPpapiHost; |
| 145 class RenderFrameObserver; | 143 class RenderFrameObserver; |
| 146 class RenderViewImpl; | 144 class RenderViewImpl; |
| 147 class RenderWidget; | 145 class RenderWidget; |
| (...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 bool browser_side_navigation_pending_ = false; | 1342 bool browser_side_navigation_pending_ = false; |
| 1345 | 1343 |
| 1346 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1344 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1347 | 1345 |
| 1348 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1346 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1349 }; | 1347 }; |
| 1350 | 1348 |
| 1351 } // namespace content | 1349 } // namespace content |
| 1352 | 1350 |
| 1353 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1351 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |