Increases batch size for sending bench data to appengine to 66.
This is part of the attempt to avoid bench step timeout errors (10-20min).
Review URL: https://codereview.chromium.org/13430011

git-svn-id: http://skia.googlecode.com/svn/trunk@8491 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/bench/bench_graph_svg.py b/bench/bench_graph_svg.py
index 57b41c9..7ac6237 100644
--- a/bench/bench_graph_svg.py
+++ b/bench/bench_graph_svg.py
@@ -24,7 +24,7 @@
 TITLE_PREAMBLE_LENGTH = len(TITLE_PREAMBLE)
 
 # Number of data points to send to appengine at once.
-DATA_POINT_BATCHSIZE = 25
+DATA_POINT_BATCHSIZE = 66
 
 def grouper(n, iterable):
     """Groups list into list of lists for a given size. See itertools doc: