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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 void OnFind(int request_id, | 868 void OnFind(int request_id, |
869 const base::string16& search_text, | 869 const base::string16& search_text, |
870 const blink::WebFindOptions& options); | 870 const blink::WebFindOptions& options); |
871 void OnClearActiveFindMatch(); | 871 void OnClearActiveFindMatch(); |
872 void OnStopFinding(StopFindAction action); | 872 void OnStopFinding(StopFindAction action); |
873 void OnEnableViewSourceMode(); | 873 void OnEnableViewSourceMode(); |
874 void OnSuppressFurtherDialogs(); | 874 void OnSuppressFurtherDialogs(); |
875 void OnSetHasReceivedUserGesture(); | 875 void OnSetHasReceivedUserGesture(); |
876 void OnFileChooserResponse( | 876 void OnFileChooserResponse( |
877 const std::vector<content::FileChooserFileInfo>& files); | 877 const std::vector<content::FileChooserFileInfo>& files); |
| 878 void OnMixedContentUpdate(const std::set<int>& features, |
| 879 bool mixed_content_was_found, |
| 880 const GURL& mixed_content_url, |
| 881 bool mixed_content_had_redirect); |
878 #if defined(OS_ANDROID) | 882 #if defined(OS_ANDROID) |
879 void OnActivateNearestFindResult(int request_id, float x, float y); | 883 void OnActivateNearestFindResult(int request_id, float x, float y); |
880 void OnGetNearestFindResult(int request_id, float x, float y); | 884 void OnGetNearestFindResult(int request_id, float x, float y); |
881 void OnFindMatchRects(int current_version); | 885 void OnFindMatchRects(int current_version); |
882 #endif | 886 #endif |
883 | 887 |
884 #if defined(USE_EXTERNAL_POPUP_MENU) | 888 #if defined(USE_EXTERNAL_POPUP_MENU) |
885 #if defined(OS_MACOSX) | 889 #if defined(OS_MACOSX) |
886 void OnSelectPopupMenuItem(int selected_index); | 890 void OnSelectPopupMenuItem(int selected_index); |
887 #else | 891 #else |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1358 bool browser_side_navigation_pending_ = false; | 1362 bool browser_side_navigation_pending_ = false; |
1359 | 1363 |
1360 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1364 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1361 | 1365 |
1362 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1366 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1363 }; | 1367 }; |
1364 | 1368 |
1365 } // namespace content | 1369 } // namespace content |
1366 | 1370 |
1367 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1371 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |