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

Unified Diff: cc/output/software_output_device.cc

Issue 132163009: [#6]Pass gfx structs by const ref (gfx::Vector2d) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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
Index: cc/output/software_output_device.cc
diff --git a/cc/output/software_output_device.cc b/cc/output/software_output_device.cc
index 3e75e069f376f4ef038134e3a6806c50aad2e1d2..d05fcf4b9105cb2834c5858eac3f7a793ede93e6 100644
--- a/cc/output/software_output_device.cc
+++ b/cc/output/software_output_device.cc
@@ -49,7 +49,7 @@ void SoftwareOutputDevice::CopyToBitmap(
}
void SoftwareOutputDevice::Scroll(
- gfx::Vector2d delta, const gfx::Rect& clip_rect) {
+ const gfx::Vector2d& delta, const gfx::Rect& clip_rect) {
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698