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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 2354413003: Implement support for Mac Zoom following focus and caret (Closed)
Patch Set: Fix typo Created 4 years, 2 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 const ui::LatencyInfo& latency) override; 197 const ui::LatencyInfo& latency) override;
198 void ProcessGestureEvent(const blink::WebGestureEvent& event, 198 void ProcessGestureEvent(const blink::WebGestureEvent& event,
199 const ui::LatencyInfo& latency) override; 199 const ui::LatencyInfo& latency) override;
200 gfx::Point TransformPointToLocalCoordSpace( 200 gfx::Point TransformPointToLocalCoordSpace(
201 const gfx::Point& point, 201 const gfx::Point& point,
202 const cc::SurfaceId& original_surface) override; 202 const cc::SurfaceId& original_surface) override;
203 gfx::Point TransformPointToCoordSpaceForView( 203 gfx::Point TransformPointToCoordSpaceForView(
204 const gfx::Point& point, 204 const gfx::Point& point,
205 RenderWidgetHostViewBase* target_view) override; 205 RenderWidgetHostViewBase* target_view) override;
206 206
207 void FocusedNodeChanged(bool is_editable_node) override; 207 void FocusedNodeChanged(bool is_editable_node,
208 const gfx::Rect& node_bounds_in_screen) override;
208 209
209 // Overridden from ui::TextInputClient: 210 // Overridden from ui::TextInputClient:
210 void SetCompositionText(const ui::CompositionText& composition) override; 211 void SetCompositionText(const ui::CompositionText& composition) override;
211 void ConfirmCompositionText() override; 212 void ConfirmCompositionText() override;
212 void ClearCompositionText() override; 213 void ClearCompositionText() override;
213 void InsertText(const base::string16& text) override; 214 void InsertText(const base::string16& text) override;
214 void InsertChar(const ui::KeyEvent& event) override; 215 void InsertChar(const ui::KeyEvent& event) override;
215 ui::TextInputType GetTextInputType() const override; 216 ui::TextInputType GetTextInputType() const override;
216 ui::TextInputMode GetTextInputMode() const override; 217 ui::TextInputMode GetTextInputMode() const override;
217 base::i18n::TextDirection GetTextDirection() const override; 218 base::i18n::TextDirection GetTextDirection() const override;
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 int32_t last_active_widget_routing_id_; 687 int32_t last_active_widget_routing_id_;
687 688
688 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 689 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
689 690
690 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 691 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
691 }; 692 };
692 693
693 } // namespace content 694 } // namespace content
694 695
695 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 696 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698