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

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

Issue 2901093003: Revert of Update TextSelection for non-user initiated events (Closed)
Patch Set: Created 3 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 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 void ImeCompositionRangeChanged( 82 void ImeCompositionRangeChanged(
83 const gfx::Range& range, 83 const gfx::Range& range,
84 const std::vector<gfx::Rect>& character_bounds) override; 84 const std::vector<gfx::Rect>& character_bounds) override;
85 #endif 85 #endif
86 void RenderProcessGone(base::TerminationStatus status, 86 void RenderProcessGone(base::TerminationStatus status,
87 int error_code) override; 87 int error_code) override;
88 void Destroy() override; 88 void Destroy() override;
89 void SetTooltipText(const base::string16& tooltip_text) override; 89 void SetTooltipText(const base::string16& tooltip_text) override;
90 void SelectionChanged(const base::string16& text, 90 void SelectionChanged(const base::string16& text,
91 size_t offset, 91 size_t offset,
92 const gfx::Range& range, 92 const gfx::Range& range) override;
93 bool user_initiated) override;
94 void SelectionBoundsChanged( 93 void SelectionBoundsChanged(
95 const ViewHostMsg_SelectionBounds_Params& params) override; 94 const ViewHostMsg_SelectionBounds_Params& params) override;
96 void SubmitCompositorFrame(const cc::LocalSurfaceId& local_surface_id, 95 void SubmitCompositorFrame(const cc::LocalSurfaceId& local_surface_id,
97 cc::CompositorFrame frame) override; 96 cc::CompositorFrame frame) override;
98 #if defined(USE_AURA) 97 #if defined(USE_AURA)
99 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 98 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
100 InputEventAckState ack_result) override; 99 InputEventAckState ack_result) override;
101 #endif 100 #endif
102 void ProcessMouseEvent(const blink::WebMouseEvent& event, 101 void ProcessMouseEvent(const blink::WebMouseEvent& event,
103 const ui::LatencyInfo& latency) override; 102 const ui::LatencyInfo& latency) override;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 // The guest may forward its updates only when there is an ongoing IME 169 // The guest may forward its updates only when there is an ongoing IME
171 // session. 170 // session.
172 bool should_forward_text_selection_; 171 bool should_forward_text_selection_;
173 172
174 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest); 173 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewGuest);
175 }; 174 };
176 175
177 } // namespace content 176 } // namespace content
178 177
179 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_ 178 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_GUEST_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/browser/frame_host/render_widget_host_view_guest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698