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

Side by Side Diff: content/renderer/all_rendering_benchmarks.h

Issue 10537036: Added rendering benchmark javascript hook (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: cleanup, refactoring, git try'd Created 8 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698