Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2623483003: Support tracking focused node element for OOPIFs. (Closed)
Patch Set: Added the missing forward declaration Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/public/test/text_input_test_utils.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 void OnFind(int request_id, 856 void OnFind(int request_id,
857 const base::string16& search_text, 857 const base::string16& search_text,
858 const blink::WebFindOptions& options); 858 const blink::WebFindOptions& options);
859 void OnClearActiveFindMatch(); 859 void OnClearActiveFindMatch();
860 void OnStopFinding(StopFindAction action); 860 void OnStopFinding(StopFindAction action);
861 void OnEnableViewSourceMode(); 861 void OnEnableViewSourceMode();
862 void OnSuppressFurtherDialogs(); 862 void OnSuppressFurtherDialogs();
863 void OnSetHasReceivedUserGesture(); 863 void OnSetHasReceivedUserGesture();
864 void OnFileChooserResponse( 864 void OnFileChooserResponse(
865 const std::vector<content::FileChooserFileInfo>& files); 865 const std::vector<content::FileChooserFileInfo>& files);
866 void OnClearFocusedElement();
866 #if defined(OS_ANDROID) 867 #if defined(OS_ANDROID)
867 void OnActivateNearestFindResult(int request_id, float x, float y); 868 void OnActivateNearestFindResult(int request_id, float x, float y);
868 void OnGetNearestFindResult(int request_id, float x, float y); 869 void OnGetNearestFindResult(int request_id, float x, float y);
869 void OnFindMatchRects(int current_version); 870 void OnFindMatchRects(int current_version);
870 #endif 871 #endif
871 872
872 #if defined(USE_EXTERNAL_POPUP_MENU) 873 #if defined(USE_EXTERNAL_POPUP_MENU)
873 #if defined(OS_MACOSX) 874 #if defined(OS_MACOSX)
874 void OnSelectPopupMenuItem(int selected_index); 875 void OnSelectPopupMenuItem(int selected_index);
875 #else 876 #else
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 bool browser_side_navigation_pending_ = false; 1341 bool browser_side_navigation_pending_ = false;
1341 1342
1342 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1343 1344
1344 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1345 }; 1346 };
1346 1347
1347 } // namespace content 1348 } // namespace content
1348 1349
1349 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/test/text_input_test_utils.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698