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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 void OnSerializeAsMHTML(const FrameMsg_SerializeAsMHTML_Params& params); | 848 void OnSerializeAsMHTML(const FrameMsg_SerializeAsMHTML_Params& params); |
849 void OnFind(int request_id, | 849 void OnFind(int request_id, |
850 const base::string16& search_text, | 850 const base::string16& search_text, |
851 const blink::WebFindOptions& options); | 851 const blink::WebFindOptions& options); |
852 void OnClearActiveFindMatch(); | 852 void OnClearActiveFindMatch(); |
853 void OnStopFinding(StopFindAction action); | 853 void OnStopFinding(StopFindAction action); |
854 void OnEnableViewSourceMode(); | 854 void OnEnableViewSourceMode(); |
855 void OnSuppressFurtherDialogs(); | 855 void OnSuppressFurtherDialogs(); |
856 void OnFileChooserResponse( | 856 void OnFileChooserResponse( |
857 const std::vector<content::FileChooserFileInfo>& files); | 857 const std::vector<content::FileChooserFileInfo>& files); |
| 858 void OnAudioStateChanged(bool is_audio_playing); |
858 #if defined(OS_ANDROID) | 859 #if defined(OS_ANDROID) |
859 void OnActivateNearestFindResult(int request_id, float x, float y); | 860 void OnActivateNearestFindResult(int request_id, float x, float y); |
860 void OnGetNearestFindResult(int request_id, float x, float y); | 861 void OnGetNearestFindResult(int request_id, float x, float y); |
861 void OnFindMatchRects(int current_version); | 862 void OnFindMatchRects(int current_version); |
862 #endif | 863 #endif |
863 | 864 |
864 #if defined(USE_EXTERNAL_POPUP_MENU) | 865 #if defined(USE_EXTERNAL_POPUP_MENU) |
865 #if defined(OS_MACOSX) | 866 #if defined(OS_MACOSX) |
866 void OnSelectPopupMenuItem(int selected_index); | 867 void OnSelectPopupMenuItem(int selected_index); |
867 #else | 868 #else |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1298 remote_associated_interfaces_; | 1299 remote_associated_interfaces_; |
1299 | 1300 |
1300 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1301 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1301 | 1302 |
1302 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1303 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1303 }; | 1304 }; |
1304 | 1305 |
1305 } // namespace content | 1306 } // namespace content |
1306 | 1307 |
1307 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1308 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |