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

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

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 3 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_WIDGET_HOST_VIEW_GUEST_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 void ProcessTouchEvent(const blink::WebTouchEvent& event, 103 void ProcessTouchEvent(const blink::WebTouchEvent& event,
104 const ui::LatencyInfo& latency) override; 104 const ui::LatencyInfo& latency) override;
105 105
106 bool LockMouse() override; 106 bool LockMouse() override;
107 void UnlockMouse() override; 107 void UnlockMouse() override;
108 108
109 #if defined(OS_MACOSX) 109 #if defined(OS_MACOSX)
110 // RenderWidgetHostView implementation. 110 // RenderWidgetHostView implementation.
111 void SetActive(bool active) override; 111 void SetActive(bool active) override;
112 void ShowDefinitionForSelection() override; 112 void ShowDefinitionForSelection() override;
113 bool SupportsSpeech() const override;
114 void SpeakSelection() override; 113 void SpeakSelection() override;
115 bool IsSpeaking() const override;
116 void StopSpeaking() override;
117 #endif // defined(OS_MACOSX) 114 #endif // defined(OS_MACOSX)
118 115
119 void WheelEventAck(const blink::WebMouseWheelEvent& event, 116 void WheelEventAck(const blink::WebMouseWheelEvent& event,
120 InputEventAckState ack_result) override; 117 InputEventAckState ack_result) override;
121 118
122 void GestureEventAck(const blink::WebGestureEvent& event, 119 void GestureEventAck(const blink::WebGestureEvent& event,
123 InputEventAckState ack_result) override; 120 InputEventAckState ack_result) override;
124 121
125 bool IsRenderWidgetHostViewGuest() override; 122 bool IsRenderWidgetHostViewGuest() override;
126 RenderWidgetHostViewBase* GetOwnerRenderWidgetHostView() const; 123 RenderWidgetHostViewBase* GetOwnerRenderWidgetHostView() const;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 // The platform view for this RenderWidgetHostView. 158 // The platform view for this RenderWidgetHostView.
162 // RenderWidgetHostViewGuest mostly only cares about stuff related to 159 // RenderWidgetHostViewGuest mostly only cares about stuff related to
163 // compositing, the rest are directly forwarded to this |platform_view_|. 160 // compositing, the rest are directly forwarded to this |platform_view_|.
164 base::WeakPtr<RenderWidgetHostViewBase> platform_view_; 161 base::WeakPtr<RenderWidgetHostViewBase> platform_view_;
165 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); 162 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest);
166 }; 163 };
167 164
168 } // namespace content 165 } // namespace content
169 166
170 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 167 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698