Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_RENDERER_ALL_RENDERING_BENCHMARKS_H_ | |
| 6 #define CONTENT_RENDERER_ALL_RENDERING_BENCHMARKS_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/memory/scoped_vector.h" | |
| 13 | |
| 14 namespace WebKit { | |
| 15 class WebViewBenchmarkSupport; | |
| 16 } | |
| 17 | |
| 18 namespace content { | |
| 19 class RenderingBenchmarkResults; | |
| 20 class RenderingBenchmark; | |
| 21 | |
| 22 class AllRenderingBenchmarks { | |
|
nduca
2012/07/19 08:39:08
why a class and not a function? What state does th
nduca
2012/07/19 08:39:08
two spaces between class and AllRenderingXXX
dmurph
2012/07/20 20:20:36
Turned into function.
| |
| 23 public: | |
| 24 AllRenderingBenchmarks(); | |
| 25 virtual ~AllRenderingBenchmarks(); | |
| 26 | |
| 27 const std::vector<RenderingBenchmark*>& benchmarks(); | |
| 28 | |
| 29 private: | |
| 30 ScopedVector<RenderingBenchmark> benchmarks_; | |
| 31 | |
| 32 DISALLOW_COPY_AND_ASSIGN(AllRenderingBenchmarks); | |
| 33 }; | |
| 34 } // namespace content | |
| 35 | |
| 36 #endif // CONTENT_RENDERER_ALL_RENDERING_BENCHMARKS_H_ | |
| OLD | NEW |