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