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

Side by Side Diff: tools/perf/benchmarks/memory.py

Issue 1333323003: SnapManager implementation using V8 Extras - {WIP} Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update with latest master Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/public/blink_resources.grd ('k') | tools/perf/benchmarks/smoothness.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from core import perf_benchmark 5 from core import perf_benchmark
6 6
7 from measurements import memory 7 from measurements import memory
8 import page_sets 8 import page_sets
9 from telemetry import benchmark 9 from telemetry import benchmark
10 10
(...skipping 19 matching lines...) Expand all
30 page_set = page_sets.Top7StressPageSet 30 page_set = page_sets.Top7StressPageSet
31 31
32 @classmethod 32 @classmethod
33 def Name(cls): 33 def Name(cls):
34 return 'memory.top_7_stress' 34 return 'memory.top_7_stress'
35 35
36 @classmethod 36 @classmethod
37 def ShouldDisable(cls, possible_browser): 37 def ShouldDisable(cls, possible_browser):
38 return cls.IsSvelte(possible_browser) # http://crbug.com/555092 38 return cls.IsSvelte(possible_browser) # http://crbug.com/555092
39 39
40 class MemorySnappoints(perf_benchmark.PerfBenchmark):
41 """Use a page with snappoints and measure memory consumption
42 of it """
43 test = memory.Memory
44 page_set = page_sets.SnappointsCasesPageSet
45
46 @classmethod
47 def Name(cls):
48 return 'memory.snappoints'
OLDNEW
« no previous file with comments | « third_party/WebKit/public/blink_resources.grd ('k') | tools/perf/benchmarks/smoothness.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698