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

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

Issue 2774683002: Re-land: Add a window property to associate RWHVA with its child AX tree ID (Closed)
Patch Set: Created 3 years, 9 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_BASE_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 13 matching lines...) Expand all
24 #include "content/browser/renderer_host/event_with_latency_info.h" 24 #include "content/browser/renderer_host/event_with_latency_info.h"
25 #include "content/common/content_export.h" 25 #include "content/common/content_export.h"
26 #include "content/common/input/input_event_ack_state.h" 26 #include "content/common/input/input_event_ack_state.h"
27 #include "content/public/browser/render_widget_host_view.h" 27 #include "content/public/browser/render_widget_host_view.h"
28 #include "content/public/common/screen_info.h" 28 #include "content/public/common/screen_info.h"
29 #include "ipc/ipc_listener.h" 29 #include "ipc/ipc_listener.h"
30 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree nOrientationType.h" 30 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree nOrientationType.h"
31 #include "third_party/WebKit/public/web/WebPopupType.h" 31 #include "third_party/WebKit/public/web/WebPopupType.h"
32 #include "third_party/WebKit/public/web/WebTextDirection.h" 32 #include "third_party/WebKit/public/web/WebTextDirection.h"
33 #include "third_party/skia/include/core/SkImageInfo.h" 33 #include "third_party/skia/include/core/SkImageInfo.h"
34 #include "ui/accessibility/ax_tree_id_registry.h"
34 #include "ui/base/ime/text_input_mode.h" 35 #include "ui/base/ime/text_input_mode.h"
35 #include "ui/base/ime/text_input_type.h" 36 #include "ui/base/ime/text_input_type.h"
36 #include "ui/display/display.h" 37 #include "ui/display/display.h"
37 #include "ui/gfx/geometry/rect.h" 38 #include "ui/gfx/geometry/rect.h"
38 #include "ui/gfx/native_widget_types.h" 39 #include "ui/gfx/native_widget_types.h"
39 #include "ui/gfx/range/range.h" 40 #include "ui/gfx/range/range.h"
40 #include "ui/surface/transport_dib.h" 41 #include "ui/surface/transport_dib.h"
41 42
42 class SkBitmap; 43 class SkBitmap;
43 44
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 // If |for_root_frame| is true, creates a BrowserAccessibilityManager 208 // If |for_root_frame| is true, creates a BrowserAccessibilityManager
208 // suitable for the root frame, which may be linked to its native 209 // suitable for the root frame, which may be linked to its native
209 // window container. 210 // window container.
210 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 211 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
211 BrowserAccessibilityDelegate* delegate, bool for_root_frame); 212 BrowserAccessibilityDelegate* delegate, bool for_root_frame);
212 213
213 virtual void AccessibilityShowMenu(const gfx::Point& point); 214 virtual void AccessibilityShowMenu(const gfx::Point& point);
214 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds); 215 virtual gfx::Point AccessibilityOriginInScreen(const gfx::Rect& bounds);
215 virtual gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget(); 216 virtual gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget();
216 virtual gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible(); 217 virtual gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible();
217 218 virtual void SetMainFrameAXTreeID(ui::AXTreeIDRegistry::AXTreeID id) {}
218 // Informs that the focused DOM node has changed. 219 // Informs that the focused DOM node has changed.
219 virtual void FocusedNodeChanged(bool is_editable_node, 220 virtual void FocusedNodeChanged(bool is_editable_node,
220 const gfx::Rect& node_bounds_in_screen) {} 221 const gfx::Rect& node_bounds_in_screen) {}
221 222
222 virtual void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, 223 virtual void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id,
223 const cc::LocalSurfaceId& local_surface_id, 224 const cc::LocalSurfaceId& local_surface_id,
224 cc::CompositorFrame frame) {} 225 cc::CompositorFrame frame) {}
225 226
226 virtual void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) {} 227 virtual void OnBeginFrameDidNotSwap(const cc::BeginFrameAck& ack) {}
227 228
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; 462 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_;
462 463
463 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; 464 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_;
464 465
465 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); 466 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase);
466 }; 467 };
467 468
468 } // namespace content 469 } // namespace content
469 470
470 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ 471 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.cc ('k') | ui/accessibility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698