| 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 OnClearFocusedElement(); |
| 878 #if defined(OS_ANDROID) | 879 #if defined(OS_ANDROID) |
| 879 void OnActivateNearestFindResult(int request_id, float x, float y); | 880 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 880 void OnGetNearestFindResult(int request_id, float x, float y); | 881 void OnGetNearestFindResult(int request_id, float x, float y); |
| 881 void OnFindMatchRects(int current_version); | 882 void OnFindMatchRects(int current_version); |
| 882 #endif | 883 #endif |
| 883 | 884 |
| 884 #if defined(USE_EXTERNAL_POPUP_MENU) | 885 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 885 #if defined(OS_MACOSX) | 886 #if defined(OS_MACOSX) |
| 886 void OnSelectPopupMenuItem(int selected_index); | 887 void OnSelectPopupMenuItem(int selected_index); |
| 887 #else | 888 #else |
| (...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1358 bool browser_side_navigation_pending_ = false; | 1359 bool browser_side_navigation_pending_ = false; |
| 1359 | 1360 |
| 1360 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1361 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1361 | 1362 |
| 1362 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1363 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1363 }; | 1364 }; |
| 1364 | 1365 |
| 1365 } // namespace content | 1366 } // namespace content |
| 1366 | 1367 |
| 1367 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1368 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |