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

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

Issue 2370393002: Extracting placeholder information from Webkit to Blimp (Closed)
Patch Set: merge origin/master 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
« no previous file with comments | « content/public/common/form_field_data.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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 void OnSetEditableSelectionOffsets(int start, int end); 822 void OnSetEditableSelectionOffsets(int start, int end);
823 void OnSetCompositionFromExistingText( 823 void OnSetCompositionFromExistingText(
824 int start, int end, 824 int start, int end,
825 const std::vector<blink::WebCompositionUnderline>& underlines); 825 const std::vector<blink::WebCompositionUnderline>& underlines);
826 void OnExecuteNoValueEditCommand(const std::string& name); 826 void OnExecuteNoValueEditCommand(const std::string& name);
827 void OnExtendSelectionAndDelete(int before, int after); 827 void OnExtendSelectionAndDelete(int before, int after);
828 void OnDeleteSurroundingText(int before, int after); 828 void OnDeleteSurroundingText(int before, int after);
829 void OnReload(bool bypass_cache); 829 void OnReload(bool bypass_cache);
830 void OnReloadLoFiImages(); 830 void OnReloadLoFiImages();
831 void OnTextSurroundingSelectionRequest(uint32_t max_length); 831 void OnTextSurroundingSelectionRequest(uint32_t max_length);
832 void OnFocusedFormFieldDataRequest(int request_id);
832 void OnSetAccessibilityMode(AccessibilityMode new_mode); 833 void OnSetAccessibilityMode(AccessibilityMode new_mode);
833 void OnSnapshotAccessibilityTree(int callback_id); 834 void OnSnapshotAccessibilityTree(int callback_id);
834 void OnUpdateOpener(int opener_routing_id); 835 void OnUpdateOpener(int opener_routing_id);
835 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 836 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
836 void OnSetFrameOwnerProperties( 837 void OnSetFrameOwnerProperties(
837 const FrameOwnerProperties& frame_owner_properties); 838 const FrameOwnerProperties& frame_owner_properties);
838 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); 839 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
839 void OnSetFocusedFrame(); 840 void OnSetFocusedFrame();
840 void OnTextTrackSettingsChanged( 841 void OnTextTrackSettingsChanged(
841 const FrameMsg_TextTrackSettings_Params& params); 842 const FrameMsg_TextTrackSettings_Params& params);
(...skipping 498 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/common/form_field_data.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698