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

Unified Diff: chrome/browser/renderer_host/backing_store_posix.cc

Issue 27147: Linux: server side backing stores (Closed)
Patch Set: ... Created 11 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/renderer_host/backing_store.cc ('k') | chrome/browser/renderer_host/backing_store_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/backing_store_posix.cc
diff --git a/chrome/browser/renderer_host/backing_store_posix.cc b/chrome/browser/renderer_host/backing_store_posix.cc
index 1d195fb7fb4ad011345539cee30d9e96563f0e5e..cacc6f0a5590f0b160ce52018ca13322b3cb20f8 100644
--- a/chrome/browser/renderer_host/backing_store_posix.cc
+++ b/chrome/browser/renderer_host/backing_store_posix.cc
@@ -19,7 +19,7 @@ BackingStore::BackingStore(const gfx::Size& size)
BackingStore::~BackingStore() {
}
-bool BackingStore::PaintRect(base::ProcessHandle process,
+void BackingStore::PaintRect(base::ProcessHandle process,
TransportDIB* bitmap,
const gfx::Rect& bitmap_rect) {
SkBitmap skbitmap;
@@ -29,7 +29,6 @@ bool BackingStore::PaintRect(base::ProcessHandle process,
skbitmap.setPixels(bitmap->memory());
canvas_.drawBitmap(skbitmap, bitmap_rect.x(), bitmap_rect.y());
- return true;
}
void BackingStore::ScrollRect(base::ProcessHandle process,
« no previous file with comments | « chrome/browser/renderer_host/backing_store.cc ('k') | chrome/browser/renderer_host/backing_store_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698