OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_TEST_LIVE_SYNC_PERFORMANCE_SYNC_TIMING_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_LIVE_SYNC_PERFORMANCE_SYNC_TIMING_HELPER_H_ |
6 #define CHROME_TEST_LIVE_SYNC_PERFORMANCE_SYNC_TIMING_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_LIVE_SYNC_PERFORMANCE_SYNC_TIMING_HELPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 namespace base { | 14 namespace base { |
15 class TimeDelta; | 15 class TimeDelta; |
16 } | 16 } |
(...skipping 22 matching lines...) Expand all Loading... |
39 // dashboard. Simplified version of methods defined in | 39 // dashboard. Simplified version of methods defined in |
40 // chrome/test/ui/ui_perf_test.{h,cc}. | 40 // chrome/test/ui/ui_perf_test.{h,cc}. |
41 static void PrintResult(const std::string& measurement, | 41 static void PrintResult(const std::string& measurement, |
42 const std::string& trace, | 42 const std::string& trace, |
43 const base::TimeDelta& dt); | 43 const base::TimeDelta& dt); |
44 | 44 |
45 private: | 45 private: |
46 DISALLOW_COPY_AND_ASSIGN(SyncTimingHelper); | 46 DISALLOW_COPY_AND_ASSIGN(SyncTimingHelper); |
47 }; | 47 }; |
48 | 48 |
49 #endif // CHROME_TEST_LIVE_SYNC_PERFORMANCE_SYNC_TIMING_HELPER_H_ | 49 #endif // CHROME_BROWSER_SYNC_TEST_LIVE_SYNC_PERFORMANCE_SYNC_TIMING_HELPER_H_ |
OLD | NEW |