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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
847 const std::map<GURL, base::FilePath>& url_to_local_path, | 847 const std::map<GURL, base::FilePath>& url_to_local_path, |
848 const std::map<int, base::FilePath>& frame_routing_id_to_local_path); | 848 const std::map<int, base::FilePath>& frame_routing_id_to_local_path); |
849 void OnSerializeAsMHTML(const FrameMsg_SerializeAsMHTML_Params& params); | 849 void OnSerializeAsMHTML(const FrameMsg_SerializeAsMHTML_Params& params); |
850 void OnFind(int request_id, | 850 void OnFind(int request_id, |
851 const base::string16& search_text, | 851 const base::string16& search_text, |
852 const blink::WebFindOptions& options); | 852 const blink::WebFindOptions& options); |
853 void OnClearActiveFindMatch(); | 853 void OnClearActiveFindMatch(); |
854 void OnStopFinding(StopFindAction action); | 854 void OnStopFinding(StopFindAction action); |
855 void OnEnableViewSourceMode(); | 855 void OnEnableViewSourceMode(); |
856 void OnSuppressFurtherDialogs(); | 856 void OnSuppressFurtherDialogs(); |
| 857 void OnSetHasReceivedUserGesture(); |
857 void OnFileChooserResponse( | 858 void OnFileChooserResponse( |
858 const std::vector<content::FileChooserFileInfo>& files); | 859 const std::vector<content::FileChooserFileInfo>& files); |
859 #if defined(OS_ANDROID) | 860 #if defined(OS_ANDROID) |
860 void OnActivateNearestFindResult(int request_id, float x, float y); | 861 void OnActivateNearestFindResult(int request_id, float x, float y); |
861 void OnGetNearestFindResult(int request_id, float x, float y); | 862 void OnGetNearestFindResult(int request_id, float x, float y); |
862 void OnFindMatchRects(int current_version); | 863 void OnFindMatchRects(int current_version); |
863 #endif | 864 #endif |
864 | 865 |
865 #if defined(USE_EXTERNAL_POPUP_MENU) | 866 #if defined(USE_EXTERNAL_POPUP_MENU) |
866 #if defined(OS_MACOSX) | 867 #if defined(OS_MACOSX) |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1327 bool name_changed_before_first_commit_ = false; | 1328 bool name_changed_before_first_commit_ = false; |
1328 | 1329 |
1329 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1330 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1330 | 1331 |
1331 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1332 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1332 }; | 1333 }; |
1333 | 1334 |
1334 } // namespace content | 1335 } // namespace content |
1335 | 1336 |
1336 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1337 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |