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

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

Issue 2370393002: Extracting placeholder information from Webkit to Blimp (Closed)
Patch Set: Removed callback from RenderFrameHost destructor Created 4 years, 1 month 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
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 809 matching lines...) Expand 10 before | Expand all | Expand 10 after
820 void OnSetEditableSelectionOffsets(int start, int end); 820 void OnSetEditableSelectionOffsets(int start, int end);
821 void OnSetCompositionFromExistingText( 821 void OnSetCompositionFromExistingText(
822 int start, int end, 822 int start, int end,
823 const std::vector<blink::WebCompositionUnderline>& underlines); 823 const std::vector<blink::WebCompositionUnderline>& underlines);
824 void OnExecuteNoValueEditCommand(const std::string& name); 824 void OnExecuteNoValueEditCommand(const std::string& name);
825 void OnExtendSelectionAndDelete(int before, int after); 825 void OnExtendSelectionAndDelete(int before, int after);
826 void OnDeleteSurroundingText(int before, int after); 826 void OnDeleteSurroundingText(int before, int after);
827 void OnReload(bool bypass_cache); 827 void OnReload(bool bypass_cache);
828 void OnReloadLoFiImages(); 828 void OnReloadLoFiImages();
829 void OnTextSurroundingSelectionRequest(uint32_t max_length); 829 void OnTextSurroundingSelectionRequest(uint32_t max_length);
830 void OnFocusedFormFieldDataRequest(int request_id);
830 void OnSetAccessibilityMode(AccessibilityMode new_mode); 831 void OnSetAccessibilityMode(AccessibilityMode new_mode);
831 void OnSnapshotAccessibilityTree(int callback_id); 832 void OnSnapshotAccessibilityTree(int callback_id);
832 void OnUpdateOpener(int opener_routing_id); 833 void OnUpdateOpener(int opener_routing_id);
833 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 834 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
834 void OnSetFrameOwnerProperties( 835 void OnSetFrameOwnerProperties(
835 const FrameOwnerProperties& frame_owner_properties); 836 const FrameOwnerProperties& frame_owner_properties);
836 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); 837 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
837 void OnSetFocusedFrame(); 838 void OnSetFocusedFrame();
838 void OnClearFocusedFrame(); 839 void OnClearFocusedFrame();
839 void OnTextTrackSettingsChanged( 840 void OnTextTrackSettingsChanged(
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 bool browser_side_navigation_pending_ = false; 1340 bool browser_side_navigation_pending_ = false;
1340 1341
1341 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1342 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1342 1343
1343 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1344 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1344 }; 1345 };
1345 1346
1346 } // namespace content 1347 } // namespace content
1347 1348
1348 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1349 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698