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

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

Issue 1500873002: Implement sequential focus navigation for OOPIF. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup and test fix Created 5 years 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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 11 matching lines...) Expand all
22 #include "content/public/common/javascript_message_type.h" 22 #include "content/public/common/javascript_message_type.h"
23 #include "content/public/common/referrer.h" 23 #include "content/public/common/referrer.h"
24 #include "content/public/renderer/render_frame.h" 24 #include "content/public/renderer/render_frame.h"
25 #include "content/renderer/render_frame_proxy.h" 25 #include "content/renderer/render_frame_proxy.h"
26 #include "content/renderer/renderer_webcookiejar_impl.h" 26 #include "content/renderer/renderer_webcookiejar_impl.h"
27 #include "ipc/ipc_message.h" 27 #include "ipc/ipc_message.h"
28 #include "media/blink/webmediaplayer_delegate.h" 28 #include "media/blink/webmediaplayer_delegate.h"
29 #include "media/blink/webmediaplayer_params.h" 29 #include "media/blink/webmediaplayer_params.h"
30 #include "mojo/application/public/interfaces/service_provider.mojom.h" 30 #include "mojo/application/public/interfaces/service_provider.mojom.h"
31 #include "mojo/application/public/interfaces/shell.mojom.h" 31 #include "mojo/application/public/interfaces/shell.mojom.h"
32 #include "third_party/WebKit/public/platform/WebFocusType.h"
32 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h" 33 #include "third_party/WebKit/public/platform/modules/app_banner/WebAppBannerClie nt.h"
33 #include "third_party/WebKit/public/web/WebAXObject.h" 34 #include "third_party/WebKit/public/web/WebAXObject.h"
34 #include "third_party/WebKit/public/web/WebDataSource.h" 35 #include "third_party/WebKit/public/web/WebDataSource.h"
35 #include "third_party/WebKit/public/web/WebFrameClient.h" 36 #include "third_party/WebKit/public/web/WebFrameClient.h"
36 #include "third_party/WebKit/public/web/WebFrameLoadType.h" 37 #include "third_party/WebKit/public/web/WebFrameLoadType.h"
37 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" 38 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h"
38 #include "third_party/WebKit/public/web/WebHistoryCommitType.h" 39 #include "third_party/WebKit/public/web/WebHistoryCommitType.h"
39 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h" 40 #include "third_party/WebKit/public/web/WebMeaningfulLayout.h"
40 #include "third_party/WebKit/public/web/WebPageSerializerClient.h" 41 #include "third_party/WebKit/public/web/WebPageSerializerClient.h"
41 #include "third_party/WebKit/public/web/WebScriptExecutionCallback.h" 42 #include "third_party/WebKit/public/web/WebScriptExecutionCallback.h"
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 void OnExecuteNoValueEditCommand(const std::string& name); 740 void OnExecuteNoValueEditCommand(const std::string& name);
740 void OnExtendSelectionAndDelete(int before, int after); 741 void OnExtendSelectionAndDelete(int before, int after);
741 void OnReload(bool ignore_cache); 742 void OnReload(bool ignore_cache);
742 void OnTextSurroundingSelectionRequest(size_t max_length); 743 void OnTextSurroundingSelectionRequest(size_t max_length);
743 void OnSetAccessibilityMode(AccessibilityMode new_mode); 744 void OnSetAccessibilityMode(AccessibilityMode new_mode);
744 void OnSnapshotAccessibilityTree(int callback_id); 745 void OnSnapshotAccessibilityTree(int callback_id);
745 void OnUpdateOpener(int opener_routing_id); 746 void OnUpdateOpener(int opener_routing_id);
746 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); 747 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags);
747 void OnSetFrameOwnerProperties( 748 void OnSetFrameOwnerProperties(
748 const blink::WebFrameOwnerProperties& frame_owner_properties); 749 const blink::WebFrameOwnerProperties& frame_owner_properties);
750 void OnAdvanceFocus(blink::WebFocusType type, int source_routing_id);
749 void OnTextTrackSettingsChanged( 751 void OnTextTrackSettingsChanged(
750 const FrameMsg_TextTrackSettings_Params& params); 752 const FrameMsg_TextTrackSettings_Params& params);
751 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); 753 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params);
752 #if defined(OS_ANDROID) 754 #if defined(OS_ANDROID)
753 void OnSelectPopupMenuItems(bool canceled, 755 void OnSelectPopupMenuItems(bool canceled,
754 const std::vector<int>& selected_indices); 756 const std::vector<int>& selected_indices);
755 #elif defined(OS_MACOSX) 757 #elif defined(OS_MACOSX)
756 void OnSelectPopupMenuItem(int selected_index); 758 void OnSelectPopupMenuItem(int selected_index);
757 void OnCopyToFindPboard(); 759 void OnCopyToFindPboard();
758 #endif 760 #endif
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
1122 #endif 1124 #endif
1123 1125
1124 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1126 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1125 1127
1126 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1128 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1127 }; 1129 };
1128 1130
1129 } // namespace content 1131 } // namespace content
1130 1132
1131 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1133 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698