| 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 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 void OnFind(int request_id, | 898 void OnFind(int request_id, |
| 899 const base::string16& search_text, | 899 const base::string16& search_text, |
| 900 const blink::WebFindOptions& options); | 900 const blink::WebFindOptions& options); |
| 901 void OnClearActiveFindMatch(); | 901 void OnClearActiveFindMatch(); |
| 902 void OnStopFinding(StopFindAction action); | 902 void OnStopFinding(StopFindAction action); |
| 903 void OnEnableViewSourceMode(); | 903 void OnEnableViewSourceMode(); |
| 904 void OnSuppressFurtherDialogs(); | 904 void OnSuppressFurtherDialogs(); |
| 905 void OnFileChooserResponse( | 905 void OnFileChooserResponse( |
| 906 const std::vector<content::FileChooserFileInfo>& files); | 906 const std::vector<content::FileChooserFileInfo>& files); |
| 907 void OnClearFocusedElement(); | 907 void OnClearFocusedElement(); |
| 908 // PlzNavigate: |
| 909 // Indicates that the navigation request to |url| was aborted. |
| 910 void OnAbortNavigationRequest(const GURL& url, int error_code); |
| 911 |
| 908 #if defined(OS_ANDROID) | 912 #if defined(OS_ANDROID) |
| 909 void OnActivateNearestFindResult(int request_id, float x, float y); | 913 void OnActivateNearestFindResult(int request_id, float x, float y); |
| 910 void OnGetNearestFindResult(int request_id, float x, float y); | 914 void OnGetNearestFindResult(int request_id, float x, float y); |
| 911 void OnFindMatchRects(int current_version); | 915 void OnFindMatchRects(int current_version); |
| 912 #endif | 916 #endif |
| 913 | 917 |
| 914 #if defined(USE_EXTERNAL_POPUP_MENU) | 918 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 915 #if defined(OS_MACOSX) | 919 #if defined(OS_MACOSX) |
| 916 void OnSelectPopupMenuItem(int selected_index); | 920 void OnSelectPopupMenuItem(int selected_index); |
| 917 #else | 921 #else |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 int enabled_bindings_ = 0; | 1386 int enabled_bindings_ = 0; |
| 1383 | 1387 |
| 1384 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1388 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1385 | 1389 |
| 1386 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1390 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1387 }; | 1391 }; |
| 1388 | 1392 |
| 1389 } // namespace content | 1393 } // namespace content |
| 1390 | 1394 |
| 1391 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1395 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |