| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 class GeolocationDispatcher; | 80 class GeolocationDispatcher; |
| 81 class ManifestManager; | 81 class ManifestManager; |
| 82 class MediaStreamDispatcher; | 82 class MediaStreamDispatcher; |
| 83 class MediaStreamRendererFactory; | 83 class MediaStreamRendererFactory; |
| 84 class MediaPermissionDispatcher; | 84 class MediaPermissionDispatcher; |
| 85 class MidiDispatcher; | 85 class MidiDispatcher; |
| 86 class NavigationState; | 86 class NavigationState; |
| 87 class NotificationPermissionDispatcher; | 87 class NotificationPermissionDispatcher; |
| 88 class PageState; | 88 class PageState; |
| 89 class PepperPluginInstanceImpl; | 89 class PepperPluginInstanceImpl; |
| 90 class PermissionManager; | 90 class PermissionDispatcher; |
| 91 class PresentationDispatcher; | 91 class PresentationDispatcher; |
| 92 class PushMessagingDispatcher; | 92 class PushMessagingDispatcher; |
| 93 class RendererAccessibility; | 93 class RendererAccessibility; |
| 94 class RendererCdmManager; | 94 class RendererCdmManager; |
| 95 class RendererMediaPlayerManager; | 95 class RendererMediaPlayerManager; |
| 96 class RendererPpapiHost; | 96 class RendererPpapiHost; |
| 97 class RenderFrameObserver; | 97 class RenderFrameObserver; |
| 98 class RenderViewImpl; | 98 class RenderViewImpl; |
| 99 class RenderWidget; | 99 class RenderWidget; |
| 100 class RenderWidgetFullscreenPepper; | 100 class RenderWidgetFullscreenPepper; |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 // process. | 896 // process. |
| 897 ManifestManager* manifest_manager_; | 897 ManifestManager* manifest_manager_; |
| 898 | 898 |
| 899 // The current accessibility mode. | 899 // The current accessibility mode. |
| 900 AccessibilityMode accessibility_mode_; | 900 AccessibilityMode accessibility_mode_; |
| 901 | 901 |
| 902 // Only valid if |accessibility_mode_| is anything other than | 902 // Only valid if |accessibility_mode_| is anything other than |
| 903 // AccessibilityModeOff. | 903 // AccessibilityModeOff. |
| 904 RendererAccessibility* renderer_accessibility_; | 904 RendererAccessibility* renderer_accessibility_; |
| 905 | 905 |
| 906 scoped_ptr<PermissionManager> permission_client_; | 906 scoped_ptr<PermissionDispatcher> permission_client_; |
| 907 | 907 |
| 908 #if defined(OS_MACOSX) || defined(OS_ANDROID) | 908 #if defined(OS_MACOSX) || defined(OS_ANDROID) |
| 909 // The external popup for the currently showing select popup. | 909 // The external popup for the currently showing select popup. |
| 910 scoped_ptr<ExternalPopupMenu> external_popup_menu_; | 910 scoped_ptr<ExternalPopupMenu> external_popup_menu_; |
| 911 #endif | 911 #endif |
| 912 | 912 |
| 913 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 913 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 914 | 914 |
| 915 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 915 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 916 }; | 916 }; |
| 917 | 917 |
| 918 } // namespace content | 918 } // namespace content |
| 919 | 919 |
| 920 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 920 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |