summaryrefslogtreecommitdiffstats
path: root/cc/layers/io_surface_layer.h
diff options
context:
space:
mode:
authorprashant.n@samsung.com <prashant.n@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-28 06:37:17 +0000
committerprashant.n@samsung.com <prashant.n@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-28 06:37:17 +0000
commitc93cbb62f684183e0e5689a9fa35619daac10f7b (patch)
tree8002e049a31ad5cad79f63d19fe1f79b68b8ae2f /cc/layers/io_surface_layer.h
parent22a9610ffaed4d7690463d2f6f710d46c206c70f (diff)
downloadchromium_src-c93cbb62f684183e0e5689a9fa35619daac10f7b.zip
chromium_src-c93cbb62f684183e0e5689a9fa35619daac10f7b.tar.gz
chromium_src-c93cbb62f684183e0e5689a9fa35619daac10f7b.tar.bz2
[#7] Pass gfx::Size by const ref.
Any struct of size > 4 bytes should be passed by const ref. Passing by ref for these structs is faster than passing by value, especially when invoking function has multiple parameters and some other scenarios mentioned in the bug. BUG=159273 Review URL: https://codereview.chromium.org/145313006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247426 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/layers/io_surface_layer.h')
-rw-r--r--cc/layers/io_surface_layer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/layers/io_surface_layer.h b/cc/layers/io_surface_layer.h
index e2e831a..9939f56 100644
--- a/cc/layers/io_surface_layer.h
+++ b/cc/layers/io_surface_layer.h
@@ -14,7 +14,7 @@ class CC_EXPORT IOSurfaceLayer : public Layer {
public:
static scoped_refptr<IOSurfaceLayer> Create();
- void SetIOSurfaceProperties(uint32_t io_surface_id, gfx::Size size);
+ void SetIOSurfaceProperties(uint32_t io_surface_id, const gfx::Size& size);
virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
OVERRIDE;