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

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

Issue 1365563002: Make channel preemption not require view contexts for hookup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wakeup_gpu
Patch Set: rebase Created 5 years, 3 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 <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 gfx::Rect GetBoundsInRootWindow() override; 164 gfx::Rect GetBoundsInRootWindow() override;
165 void WheelEventAck(const blink::WebMouseWheelEvent& event, 165 void WheelEventAck(const blink::WebMouseWheelEvent& event,
166 InputEventAckState ack_result) override; 166 InputEventAckState ack_result) override;
167 void GestureEventAck(const blink::WebGestureEvent& event, 167 void GestureEventAck(const blink::WebGestureEvent& event,
168 InputEventAckState ack_result) override; 168 InputEventAckState ack_result) override;
169 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, 169 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch,
170 InputEventAckState ack_result) override; 170 InputEventAckState ack_result) override;
171 scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() override; 171 scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() override;
172 InputEventAckState FilterInputEvent( 172 InputEventAckState FilterInputEvent(
173 const blink::WebInputEvent& input_event) override; 173 const blink::WebInputEvent& input_event) override;
174 gfx::GLSurfaceHandle GetCompositingSurface() override;
175 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 174 BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
176 BrowserAccessibilityDelegate* delegate) override; 175 BrowserAccessibilityDelegate* delegate) override;
177 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; 176 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override;
178 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; 177 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override;
179 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, 178 void ShowDisambiguationPopup(const gfx::Rect& rect_pixels,
180 const SkBitmap& zoomed_bitmap) override; 179 const SkBitmap& zoomed_bitmap) override;
181 bool LockMouse() override; 180 bool LockMouse() override;
182 void UnlockMouse() override; 181 void UnlockMouse() override;
183 void OnSwapCompositorFrame(uint32 output_surface_id, 182 void OnSwapCompositorFrame(uint32 output_surface_id,
184 scoped_ptr<cc::CompositorFrame> frame) override; 183 scoped_ptr<cc::CompositorFrame> frame) override;
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 bool set_focus_on_mouse_down_; 666 bool set_focus_on_mouse_down_;
668 667
669 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 668 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
670 669
671 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 670 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
672 }; 671 };
673 672
674 } // namespace content 673 } // namespace content
675 674
676 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 675 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698