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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_guest.cc

Issue 11519045: Remove unused gpu message fields. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 #include "base/bind_helpers.h" 5 #include "base/bind_helpers.h"
6 #include "base/logging.h" 6 #include "base/logging.h"
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "content/browser/browser_plugin/browser_plugin_guest.h" 8 #include "content/browser/browser_plugin/browser_plugin_guest.h"
9 #include "content/browser/renderer_host/render_view_host_impl.h" 9 #include "content/browser/renderer_host/render_view_host_impl.h"
10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h"
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 195
196 void RenderWidgetHostViewGuest::CopyFromCompositingSurface( 196 void RenderWidgetHostViewGuest::CopyFromCompositingSurface(
197 const gfx::Rect& src_subrect, 197 const gfx::Rect& src_subrect,
198 const gfx::Size& /* dst_size */, 198 const gfx::Size& /* dst_size */,
199 const base::Callback<void(bool)>& callback, 199 const base::Callback<void(bool)>& callback,
200 skia::PlatformBitmap* output) { 200 skia::PlatformBitmap* output) {
201 NOTIMPLEMENTED(); 201 NOTIMPLEMENTED();
202 } 202 }
203 203
204 void RenderWidgetHostViewGuest::AcceleratedSurfaceNew( 204 void RenderWidgetHostViewGuest::AcceleratedSurfaceNew(
205 int32 width_in_pixel,
206 int32 height_in_pixel,
207 uint64 surface_handle, 205 uint64 surface_handle,
208 const std::string& mailbox_name) { 206 const std::string& mailbox_name) {
209 NOTIMPLEMENTED(); 207 NOTIMPLEMENTED();
210 } 208 }
211 209
212 void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer( 210 void RenderWidgetHostViewGuest::AcceleratedSurfacePostSubBuffer(
213 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params, 211 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params,
214 int gpu_host_id) { 212 int gpu_host_id) {
215 NOTIMPLEMENTED(); 213 NOTIMPLEMENTED();
216 } 214 }
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 } 400 }
403 #endif 401 #endif
404 402
405 #if defined(OS_POSIX) || defined(USE_AURA) 403 #if defined(OS_POSIX) || defined(USE_AURA)
406 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { 404 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) {
407 NOTIMPLEMENTED(); 405 NOTIMPLEMENTED();
408 } 406 }
409 #endif // defined(OS_POSIX) || defined(USE_AURA) 407 #endif // defined(OS_POSIX) || defined(USE_AURA)
410 408
411 } // namespace content 409 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_guest.h ('k') | content/common/gpu/gpu_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698