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

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

Issue 8625003: Revert 111040 - Reland 110355 - Use shared D3D9 texture to transport the compositor's backing buf... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 virtual void ImeCancelComposition() OVERRIDE; 64 virtual void ImeCancelComposition() OVERRIDE;
65 virtual void DidUpdateBackingStore( 65 virtual void DidUpdateBackingStore(
66 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy, 66 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
67 const std::vector<gfx::Rect>& copy_rects) OVERRIDE; 67 const std::vector<gfx::Rect>& copy_rects) OVERRIDE;
68 virtual void RenderViewGone(base::TerminationStatus status, 68 virtual void RenderViewGone(base::TerminationStatus status,
69 int error_code) OVERRIDE; 69 int error_code) OVERRIDE;
70 virtual void Destroy() OVERRIDE; 70 virtual void Destroy() OVERRIDE;
71 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE; 71 virtual void SetTooltipText(const string16& tooltip_text) OVERRIDE;
72 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE; 72 virtual BackingStore* AllocBackingStore(const gfx::Size& size) OVERRIDE;
73 virtual void OnAcceleratedCompositingStateChange() OVERRIDE; 73 virtual void OnAcceleratedCompositingStateChange() OVERRIDE;
74 virtual void AcceleratedSurfaceBuffersSwapped(
75 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params,
76 int gpu_host_id) OVERRIDE;
77 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) 74 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT)
78 virtual void AcceleratedSurfaceNew( 75 virtual void AcceleratedSurfaceNew(
79 int32 width, 76 int32 width,
80 int32 height, 77 int32 height,
81 uint64* surface_id, 78 uint64* surface_id,
82 TransportDIB::Handle* surface_handle) OVERRIDE; 79 TransportDIB::Handle* surface_handle) OVERRIDE;
80 virtual void AcceleratedSurfaceBuffersSwapped(
81 uint64 surface_id,
82 int32 route_id,
83 int gpu_host_id) OVERRIDE;
83 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE; 84 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE;
84 #endif 85 #endif
85 virtual void SetBackground(const SkBitmap& background) OVERRIDE; 86 virtual void SetBackground(const SkBitmap& background) OVERRIDE;
86 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; 87 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE;
87 virtual gfx::Rect GetRootWindowBounds() OVERRIDE; 88 virtual gfx::Rect GetRootWindowBounds() OVERRIDE;
88 virtual void SetVisuallyDeemphasized(const SkColor* color, 89 virtual void SetVisuallyDeemphasized(const SkColor* color,
89 bool animate) OVERRIDE; 90 bool animate) OVERRIDE;
90 virtual void UnhandledWheelEvent( 91 virtual void UnhandledWheelEvent(
91 const WebKit::WebMouseWheelEvent& event) OVERRIDE; 92 const WebKit::WebMouseWheelEvent& event) OVERRIDE;
92 virtual void SetHasHorizontalScrollbar( 93 virtual void SetHasHorizontalScrollbar(
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > 157 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> >
157 accelerated_surface_containers_; 158 accelerated_surface_containers_;
158 #endif 159 #endif
159 160
160 bool skip_schedule_paint_; 161 bool skip_schedule_paint_;
161 162
162 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 163 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
163 }; 164 };
164 165
165 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 166 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view.h ('k') | content/browser/renderer_host/render_widget_host_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698