summaryrefslogtreecommitdiffstats
path: root/cc/PRESUBMIT.py
diff options
context:
space:
mode:
authorprashant.n@samsung.com <prashant.n@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-07 22:40:03 +0000
committerprashant.n@samsung.com <prashant.n@samsung.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-07 22:40:03 +0000
commit37ae8a4ebc0593bc0fb8704f5b070b6686f61f02 (patch)
treea368f889a7f43d4fae9f7a30661203a6d251fa3e /cc/PRESUBMIT.py
parent4da0f2380d29f4bcbe0f0feba63c101d3c21127b (diff)
downloadchromium_src-37ae8a4ebc0593bc0fb8704f5b070b6686f61f02.zip
chromium_src-37ae8a4ebc0593bc0fb8704f5b070b6686f61f02.tar.gz
chromium_src-37ae8a4ebc0593bc0fb8704f5b070b6686f61f02.tar.bz2
Remove presubmit checks from cc/PRESUBMIT.py which checked gfx structs
by value. Subsequent patches will clean up all the gfx structs to be passed by ref. BUG=159273 Review URL: https://codereview.chromium.org/126073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243415 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/PRESUBMIT.py')
-rw-r--r--cc/PRESUBMIT.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/cc/PRESUBMIT.py b/cc/PRESUBMIT.py
index 5b8100b..2dd1998 100644
--- a/cc/PRESUBMIT.py
+++ b/cc/PRESUBMIT.py
@@ -116,13 +116,6 @@ def CheckPassByValue(input_api,
# Well-defined simple classes containing only <= 4 ints, or <= 2 floats.
pass_by_value_types = ['base::Time',
'base::TimeTicks',
- 'gfx::Point',
- 'gfx::PointF',
- 'gfx::Rect',
- 'gfx::Size',
- 'gfx::SizeF',
- 'gfx::Vector2d',
- 'gfx::Vector2dF',
]
for f in input_api.AffectedSourceFiles(source_file_filter):