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

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

Issue 274163004: Remove browser-side tracking of accelerated compositing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 | Annotate | Revision Log
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_ANDROID_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 int error_code) OVERRIDE; 109 int error_code) OVERRIDE;
110 virtual void Destroy() OVERRIDE; 110 virtual void Destroy() OVERRIDE;
111 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE; 111 virtual void SetTooltipText(const base::string16& tooltip_text) OVERRIDE;
112 virtual void SelectionChanged(const base::string16& text, 112 virtual void SelectionChanged(const base::string16& text,
113 size_t offset, 113 size_t offset,
114 const gfx::Range& range) OVERRIDE; 114 const gfx::Range& range) OVERRIDE;
115 virtual void SelectionBoundsChanged( 115 virtual void SelectionBoundsChanged(
116 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE; 116 const ViewHostMsg_SelectionBounds_Params& params) OVERRIDE;
117 virtual void SelectionRootBoundsChanged(const gfx::Rect& bounds) OVERRIDE; 117 virtual void SelectionRootBoundsChanged(const gfx::Rect& bounds) OVERRIDE;
118 virtual void ScrollOffsetChanged() OVERRIDE; 118 virtual void ScrollOffsetChanged() OVERRIDE;
119 virtual void OnAcceleratedCompositingStateChange() OVERRIDE;
120 virtual void AcceleratedSurfaceInitialized(int host_id, 119 virtual void AcceleratedSurfaceInitialized(int host_id,
121 int route_id) OVERRIDE; 120 int route_id) OVERRIDE;
122 virtual void AcceleratedSurfaceBuffersSwapped( 121 virtual void AcceleratedSurfaceBuffersSwapped(
123 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params, 122 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params,
124 int gpu_host_id) OVERRIDE; 123 int gpu_host_id) OVERRIDE;
125 virtual void AcceleratedSurfacePostSubBuffer( 124 virtual void AcceleratedSurfacePostSubBuffer(
126 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, 125 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
127 int gpu_host_id) OVERRIDE; 126 int gpu_host_id) OVERRIDE;
128 virtual void AcceleratedSurfaceSuspend() OVERRIDE; 127 virtual void AcceleratedSurfaceSuspend() OVERRIDE;
129 virtual void AcceleratedSurfaceRelease() OVERRIDE; 128 virtual void AcceleratedSurfaceRelease() OVERRIDE;
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 }; 353 };
355 354
356 scoped_ptr<LastFrameInfo> last_frame_info_; 355 scoped_ptr<LastFrameInfo> last_frame_info_;
357 356
358 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); 357 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid);
359 }; 358 };
360 359
361 } // namespace content 360 } // namespace content
362 361
363 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ 362 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698