| 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 <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 class CompositorDependencies; | 98 class CompositorDependencies; |
| 99 class DevToolsAgent; | 99 class DevToolsAgent; |
| 100 class DocumentState; | 100 class DocumentState; |
| 101 class ExternalPopupMenu; | 101 class ExternalPopupMenu; |
| 102 class GeolocationDispatcher; | 102 class GeolocationDispatcher; |
| 103 class ManifestManager; | 103 class ManifestManager; |
| 104 class MediaStreamDispatcher; | 104 class MediaStreamDispatcher; |
| 105 class MediaStreamRendererFactory; | 105 class MediaStreamRendererFactory; |
| 106 class MediaPermissionDispatcherImpl; | 106 class MediaPermissionDispatcherImpl; |
| 107 class MidiDispatcher; | 107 class MidiDispatcher; |
| 108 class NavigationState; | 108 class NavigationStateImpl; |
| 109 class NotificationPermissionDispatcher; | 109 class NotificationPermissionDispatcher; |
| 110 class PageState; | 110 class PageState; |
| 111 class PepperPluginInstanceImpl; | 111 class PepperPluginInstanceImpl; |
| 112 class PermissionDispatcher; | 112 class PermissionDispatcher; |
| 113 class PresentationDispatcher; | 113 class PresentationDispatcher; |
| 114 class PushMessagingDispatcher; | 114 class PushMessagingDispatcher; |
| 115 class RendererAccessibility; | 115 class RendererAccessibility; |
| 116 class RendererCdmManager; | 116 class RendererCdmManager; |
| 117 class RendererMediaPlayerManager; | 117 class RendererMediaPlayerManager; |
| 118 class RendererPpapiHost; | 118 class RendererPpapiHost; |
| (...skipping 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 849 | 849 |
| 850 // Returns the URL being loaded by the |frame_|'s request. | 850 // Returns the URL being loaded by the |frame_|'s request. |
| 851 GURL GetLoadingUrl() const; | 851 GURL GetLoadingUrl() const; |
| 852 | 852 |
| 853 // If we initiated a navigation, this function will populate |document_state| | 853 // If we initiated a navigation, this function will populate |document_state| |
| 854 // with the navigation information saved in OnNavigate(). | 854 // with the navigation information saved in OnNavigate(). |
| 855 void PopulateDocumentStateFromPending(DocumentState* document_state); | 855 void PopulateDocumentStateFromPending(DocumentState* document_state); |
| 856 | 856 |
| 857 // Returns a new NavigationState populated with the navigation information | 857 // Returns a new NavigationState populated with the navigation information |
| 858 // saved in OnNavigate(). | 858 // saved in OnNavigate(). |
| 859 NavigationState* CreateNavigationStateFromPending(); | 859 NavigationStateImpl* CreateNavigationStateFromPending(); |
| 860 | 860 |
| 861 #if defined(OS_ANDROID) | 861 #if defined(OS_ANDROID) |
| 862 blink::WebMediaPlayer* CreateAndroidWebMediaPlayer( | 862 blink::WebMediaPlayer* CreateAndroidWebMediaPlayer( |
| 863 blink::WebMediaPlayerClient* client, | 863 blink::WebMediaPlayerClient* client, |
| 864 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, | 864 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
| 865 const media::WebMediaPlayerParams& params); | 865 const media::WebMediaPlayerParams& params); |
| 866 | 866 |
| 867 RendererMediaPlayerManager* GetMediaPlayerManager(); | 867 RendererMediaPlayerManager* GetMediaPlayerManager(); |
| 868 #endif | 868 #endif |
| 869 | 869 |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1083 #endif | 1083 #endif |
| 1084 | 1084 |
| 1085 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1085 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1086 | 1086 |
| 1087 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1087 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1088 }; | 1088 }; |
| 1089 | 1089 |
| 1090 } // namespace content | 1090 } // namespace content |
| 1091 | 1091 |
| 1092 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1092 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |