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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 1992393002: Enable external popup menu in Blimp, part 1/2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 #include "content/public/browser/android/service_registry_android.h" 47 #include "content/public/browser/android/service_registry_android.h"
48 #endif 48 #endif
49 49
50 class GURL; 50 class GURL;
51 struct AccessibilityHostMsg_EventParams; 51 struct AccessibilityHostMsg_EventParams;
52 struct AccessibilityHostMsg_FindInPageResultParams; 52 struct AccessibilityHostMsg_FindInPageResultParams;
53 struct AccessibilityHostMsg_LocationChangeParams; 53 struct AccessibilityHostMsg_LocationChangeParams;
54 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; 54 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params;
55 struct FrameHostMsg_OpenURL_Params; 55 struct FrameHostMsg_OpenURL_Params;
56 struct FrameMsg_TextTrackSettings_Params; 56 struct FrameMsg_TextTrackSettings_Params;
57 #if defined(OS_MACOSX) || defined(OS_ANDROID) 57 #if defined(USE_EXTERNAL_POPUP_MENU)
58 struct FrameHostMsg_ShowPopup_Params; 58 struct FrameHostMsg_ShowPopup_Params;
59 #endif 59 #endif
60 60
61 namespace base { 61 namespace base {
62 class FilePath; 62 class FilePath;
63 class ListValue; 63 class ListValue;
64 } 64 }
65 65
66 namespace blink { 66 namespace blink {
67 namespace mojom { 67 namespace mojom {
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 const AXContentTreeUpdate& snapshot); 668 const AXContentTreeUpdate& snapshot);
669 void OnToggleFullscreen(bool enter_fullscreen); 669 void OnToggleFullscreen(bool enter_fullscreen);
670 void OnDidStartLoading(bool to_different_document); 670 void OnDidStartLoading(bool to_different_document);
671 void OnDidStopLoading(); 671 void OnDidStopLoading();
672 void OnDidChangeLoadProgress(double load_progress); 672 void OnDidChangeLoadProgress(double load_progress);
673 void OnSerializeAsMHTMLResponse( 673 void OnSerializeAsMHTMLResponse(
674 int job_id, 674 int job_id,
675 bool success, 675 bool success,
676 const std::set<std::string>& digests_of_uris_of_serialized_resources); 676 const std::set<std::string>& digests_of_uris_of_serialized_resources);
677 677
678 #if defined(OS_MACOSX) || defined(OS_ANDROID) 678 #if defined(USE_EXTERNAL_POPUP_MENU)
679 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params); 679 void OnShowPopup(const FrameHostMsg_ShowPopup_Params& params);
680 void OnHidePopup(); 680 void OnHidePopup();
681 #endif 681 #endif
682 682
683 // Registers Mojo services that this frame host makes available. 683 // Registers Mojo services that this frame host makes available.
684 void RegisterMojoServices(); 684 void RegisterMojoServices();
685 685
686 // Resets any waiting state of this RenderFrameHost that is no longer 686 // Resets any waiting state of this RenderFrameHost that is no longer
687 // relevant. 687 // relevant.
688 void ResetWaitingState(); 688 void ResetWaitingState();
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 979
980 // NOTE: This must be the last member. 980 // NOTE: This must be the last member.
981 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 981 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
982 982
983 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 983 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
984 }; 984 };
985 985
986 } // namespace content 986 } // namespace content
987 987
988 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 988 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698