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