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

Side by Side Diff: components/translate/core/common/translate_metrics_unittest.cc

Issue 93603006: Move Translate-related files to components/translate (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 6 years, 11 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
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 #include "components/translate/common/translate_metrics.h" 5 #include "components/translate/core/common/translate_metrics.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/metrics/histogram.h" 9 #include "base/metrics/histogram.h"
10 #include "base/metrics/histogram_samples.h" 10 #include "base/metrics/histogram_samples.h"
11 #include "base/metrics/statistics_recorder.h" 11 #include "base/metrics/statistics_recorder.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 #include "testing/platform_test.h" 13 #include "testing/platform_test.h"
14 14
15 using base::HistogramBase; 15 using base::HistogramBase;
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 TEST(TranslateMetricsTest, ReportLanguageDetectionTime) { 275 TEST(TranslateMetricsTest, ReportLanguageDetectionTime) {
276 MetricsRecorder recorder( 276 MetricsRecorder recorder(
277 translate::GetMetricsName(translate::UMA_LANGUAGE_DETECTION)); 277 translate::GetMetricsName(translate::UMA_LANGUAGE_DETECTION));
278 recorder.CheckTotalCount(0); 278 recorder.CheckTotalCount(0);
279 TimeTicks begin = TimeTicks::Now(); 279 TimeTicks begin = TimeTicks::Now();
280 TimeTicks end = begin + base::TimeDelta::FromMicroseconds(9009); 280 TimeTicks end = begin + base::TimeDelta::FromMicroseconds(9009);
281 translate::ReportLanguageDetectionTime(begin, end); 281 translate::ReportLanguageDetectionTime(begin, end);
282 recorder.CheckValueInLogs(9.009); 282 recorder.CheckValueInLogs(9.009);
283 recorder.CheckTotalCount(1); 283 recorder.CheckTotalCount(1);
284 } 284 }
OLDNEW
« no previous file with comments | « components/translate/core/common/translate_metrics.cc ('k') | components/translate/core/common/translate_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698