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

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

Issue 2370393002: Extracting placeholder information from Webkit to Blimp (Closed)
Patch Set: Switched from ViewMsg_* to FrameMsg_* 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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 void OnSetEditableSelectionOffsets(int start, int end); 819 void OnSetEditableSelectionOffsets(int start, int end);
820 void OnSetCompositionFromExistingText( 820 void OnSetCompositionFromExistingText(
821 int start, int end, 821 int start, int end,
822 const std::vector<blink::WebCompositionUnderline>& underlines); 822 const std::vector<blink::WebCompositionUnderline>& underlines);
823 void OnExecuteNoValueEditCommand(const std::string& name); 823 void OnExecuteNoValueEditCommand(const std::string& name);
824 void OnExtendSelectionAndDelete(int before, int after); 824 void OnExtendSelectionAndDelete(int before, int after);
825 void OnDeleteSurroundingText(int before, int after); 825 void OnDeleteSurroundingText(int before, int after);
826 void OnReload(bool bypass_cache); 826 void OnReload(bool bypass_cache);
827 void OnReloadLoFiImages(); 827 void OnReloadLoFiImages();
828 void OnTextSurroundingSelectionRequest(uint32_t max_length); 828 void OnTextSurroundingSelectionRequest(uint32_t max_length);
829 void OnFocusedFormFieldDataRequest(int request_id);
829 void OnSetAccessibilityMode(AccessibilityMode new_mode); 830 void OnSetAccessibilityMode(AccessibilityMode new_mode);
830 void OnSnapshotAccessibilityTree(int callback_id); 831 void OnSnapshotAccessibilityTree(int callback_id);
831 void OnUpdateOpener(int opener_routing_id); 832 void OnUpdateOpener(int opener_routing_id);
832 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 833 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
833 void OnSetFrameOwnerProperties( 834 void OnSetFrameOwnerProperties(
834 const FrameOwnerProperties& frame_owner_properties); 835 const FrameOwnerProperties& frame_owner_properties);
835 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); 836 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
836 void OnSetFocusedFrame(); 837 void OnSetFocusedFrame();
837 void OnClearFocusedFrame(); 838 void OnClearFocusedFrame();
838 void OnTextTrackSettingsChanged( 839 void OnTextTrackSettingsChanged(
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
1331 bool name_changed_before_first_commit_ = false; 1332 bool name_changed_before_first_commit_ = false;
1332 1333
1333 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1334 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1334 1335
1335 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1336 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1336 }; 1337 };
1337 1338
1338 } // namespace content 1339 } // namespace content
1339 1340
1340 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1341 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698