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 26 matching lines...) Expand all Loading... |
37 #endif | 37 #endif |
38 | 38 |
39 #if defined(OS_ANDROID) | 39 #if defined(OS_ANDROID) |
40 #include "content/renderer/media/android/renderer_media_player_manager.h" | 40 #include "content/renderer/media/android/renderer_media_player_manager.h" |
41 #endif | 41 #endif |
42 | 42 |
43 class GURL; | 43 class GURL; |
44 class TransportDIB; | 44 class TransportDIB; |
45 struct FrameHostMsg_AddNavigationTransitionData_Params; | 45 struct FrameHostMsg_AddNavigationTransitionData_Params; |
46 struct FrameMsg_NewFrame_WidgetParams; | 46 struct FrameMsg_NewFrame_WidgetParams; |
| 47 struct FrameMsg_TextTrackSettings_Params; |
47 | 48 |
48 namespace blink { | 49 namespace blink { |
49 class WebGeolocationClient; | 50 class WebGeolocationClient; |
50 class WebMouseEvent; | 51 class WebMouseEvent; |
51 class WebContentDecryptionModule; | 52 class WebContentDecryptionModule; |
52 class WebMediaPlayer; | 53 class WebMediaPlayer; |
53 class WebPresentationClient; | 54 class WebPresentationClient; |
54 class WebPushClient; | 55 class WebPushClient; |
55 class WebSecurityOrigin; | 56 class WebSecurityOrigin; |
56 struct WebCompositionUnderline; | 57 struct WebCompositionUnderline; |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 void OnAddStyleSheetByURL(const std::string& url); | 628 void OnAddStyleSheetByURL(const std::string& url); |
628 void OnSetupTransitionView(const std::string& markup); | 629 void OnSetupTransitionView(const std::string& markup); |
629 void OnBeginExitTransition(const std::string& css_selector, | 630 void OnBeginExitTransition(const std::string& css_selector, |
630 bool exit_to_native_app); | 631 bool exit_to_native_app); |
631 void OnRevertExitTransition(); | 632 void OnRevertExitTransition(); |
632 void OnHideTransitionElements(const std::string& css_selector); | 633 void OnHideTransitionElements(const std::string& css_selector); |
633 void OnShowTransitionElements(const std::string& css_selector); | 634 void OnShowTransitionElements(const std::string& css_selector); |
634 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 635 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
635 void OnDisownOpener(); | 636 void OnDisownOpener(); |
636 void OnDidUpdateSandboxFlags(SandboxFlags flags); | 637 void OnDidUpdateSandboxFlags(SandboxFlags flags); |
| 638 void OnTextTrackSettingsChanged( |
| 639 const FrameMsg_TextTrackSettings_Params& params); |
637 #if defined(OS_ANDROID) | 640 #if defined(OS_ANDROID) |
638 void OnSelectPopupMenuItems(bool canceled, | 641 void OnSelectPopupMenuItems(bool canceled, |
639 const std::vector<int>& selected_indices); | 642 const std::vector<int>& selected_indices); |
640 #elif defined(OS_MACOSX) | 643 #elif defined(OS_MACOSX) |
641 void OnSelectPopupMenuItem(int selected_index); | 644 void OnSelectPopupMenuItem(int selected_index); |
642 void OnCopyToFindPboard(); | 645 void OnCopyToFindPboard(); |
643 #endif | 646 #endif |
644 | 647 |
645 void OnCommitNavigation(const ResourceResponseHead& response, | 648 void OnCommitNavigation(const ResourceResponseHead& response, |
646 const GURL& stream_url, | 649 const GURL& stream_url, |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 #endif | 914 #endif |
912 | 915 |
913 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 916 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
914 | 917 |
915 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 918 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
916 }; | 919 }; |
917 | 920 |
918 } // namespace content | 921 } // namespace content |
919 | 922 |
920 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 923 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |