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

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

Issue 2455133005: Remove FrameMsg_ClearFocusedFrame. (Closed)
Patch Set: 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/common/frame_messages.h ('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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 void OnReloadLoFiImages(); 823 void OnReloadLoFiImages();
824 void OnTextSurroundingSelectionRequest(uint32_t max_length); 824 void OnTextSurroundingSelectionRequest(uint32_t max_length);
825 void OnSetAccessibilityMode(AccessibilityMode new_mode); 825 void OnSetAccessibilityMode(AccessibilityMode new_mode);
826 void OnSnapshotAccessibilityTree(int callback_id); 826 void OnSnapshotAccessibilityTree(int callback_id);
827 void OnUpdateOpener(int opener_routing_id); 827 void OnUpdateOpener(int opener_routing_id);
828 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 828 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
829 void OnSetFrameOwnerProperties( 829 void OnSetFrameOwnerProperties(
830 const FrameOwnerProperties& frame_owner_properties); 830 const FrameOwnerProperties& frame_owner_properties);
831 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); 831 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id);
832 void OnSetFocusedFrame(); 832 void OnSetFocusedFrame();
833 void OnClearFocusedFrame();
834 void OnTextTrackSettingsChanged( 833 void OnTextTrackSettingsChanged(
835 const FrameMsg_TextTrackSettings_Params& params); 834 const FrameMsg_TextTrackSettings_Params& params);
836 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); 835 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params);
837 void OnCommitNavigation(const ResourceResponseHead& response, 836 void OnCommitNavigation(const ResourceResponseHead& response,
838 const GURL& stream_url, 837 const GURL& stream_url,
839 const CommonNavigationParams& common_params, 838 const CommonNavigationParams& common_params,
840 const RequestNavigationParams& request_params); 839 const RequestNavigationParams& request_params);
841 void OnFailedNavigation(const CommonNavigationParams& common_params, 840 void OnFailedNavigation(const CommonNavigationParams& common_params,
842 const RequestNavigationParams& request_params, 841 const RequestNavigationParams& request_params,
843 bool has_stale_copy_in_cache, 842 bool has_stale_copy_in_cache,
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 bool name_changed_before_first_commit_ = false; 1326 bool name_changed_before_first_commit_ = false;
1328 1327
1329 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1330 1329
1331 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1332 }; 1331 };
1333 1332
1334 } // namespace content 1333 } // namespace content
1335 1334
1336 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/frame_messages.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698