| 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 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 void OnFind(int request_id, | 856 void OnFind(int request_id, |
| 857 const base::string16& search_text, | 857 const base::string16& search_text, |
| 858 const blink::WebFindOptions& options); | 858 const blink::WebFindOptions& options); |
| 859 void OnClearActiveFindMatch(); | 859 void OnClearActiveFindMatch(); |
| 860 void OnStopFinding(StopFindAction action); | 860 void OnStopFinding(StopFindAction action); |
| 861 void OnEnableViewSourceMode(); | 861 void OnEnableViewSourceMode(); |
| 862 void OnSuppressFurtherDialogs(); | 862 void OnSuppressFurtherDialogs(); |
| 863 void OnSetHasReceivedUserGesture(); | 863 void OnSetHasReceivedUserGesture(); |
| 864 void OnFileChooserResponse( | 864 void OnFileChooserResponse( |
| 865 const std::vector<content::FileChooserFileInfo>& files); | 865 const std::vector<content::FileChooserFileInfo>& files); |
| 866 void OnClearFocusedElement(); |
| 866 #if defined(OS_ANDROID) | 867 #if defined(OS_ANDROID) |
| 867 void OnActivateNearestFindResult(int request_id, float x, float y); | 868 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 868 void OnGetNearestFindResult(int request_id, float x, float y); | 869 void OnGetNearestFindResult(int request_id, float x, float y); |
| 869 void OnFindMatchRects(int current_version); | 870 void OnFindMatchRects(int current_version); |
| 870 #endif | 871 #endif |
| 871 | 872 |
| 872 #if defined(USE_EXTERNAL_POPUP_MENU) | 873 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 873 #if defined(OS_MACOSX) | 874 #if defined(OS_MACOSX) |
| 874 void OnSelectPopupMenuItem(int selected_index); | 875 void OnSelectPopupMenuItem(int selected_index); |
| 875 #else | 876 #else |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 bool browser_side_navigation_pending_ = false; | 1341 bool browser_side_navigation_pending_ = false; |
| 1341 | 1342 |
| 1342 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1343 | 1344 |
| 1344 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1345 }; | 1346 }; |
| 1346 | 1347 |
| 1347 } // namespace content | 1348 } // namespace content |
| 1348 | 1349 |
| 1349 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |