diff options
author | isherman <isherman@chromium.org> | 2015-08-24 09:23:54 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-24 16:24:46 +0000 |
commit | 9f93c68acf3d96c9c8cede35cd719a6987a5ca43 (patch) | |
tree | ad40e755e957445184d41800aa2d091722ae4a07 /components/metrics | |
parent | 0368caee9a5c42194309a29d871cba48a5aeb2e9 (diff) | |
download | chromium_src-9f93c68acf3d96c9c8cede35cd719a6987a5ca43.zip chromium_src-9f93c68acf3d96c9c8cede35cd719a6987a5ca43.tar.gz chromium_src-9f93c68acf3d96c9c8cede35cd719a6987a5ca43.tar.bz2 |
[UMA, Cleanup] Clean up the profiler metrics provider a bit.
There's no need to special-case the Android logic within the metrics provider
code, as the callback already does so.
BUG=none
TEST=none
R=asvitkine@chromium.org
Review URL: https://codereview.chromium.org/1310513002
Cr-Commit-Position: refs/heads/master@{#345088}
Diffstat (limited to 'components/metrics')
-rw-r--r-- | components/metrics/profiler/profiler_metrics_provider.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/metrics/profiler/profiler_metrics_provider.cc b/components/metrics/profiler/profiler_metrics_provider.cc index 341f74e..79173c7 100644 --- a/components/metrics/profiler/profiler_metrics_provider.cc +++ b/components/metrics/profiler/profiler_metrics_provider.cc @@ -14,7 +14,6 @@ #include "components/nacl/common/nacl_process_type.h" namespace metrics { - namespace { ProfilerEventProto::TrackedObject::ProcessType AsProtobufProcessType( @@ -137,8 +136,11 @@ void ProfilerMetricsProvider::RecordProfilerData( base::TimeDelta phase_start, base::TimeDelta phase_finish, const ProfilerEvents& past_events) { + // Omit profiler data on connections where it's likely to cost the user money + // for us to upload it. if (IsCellularLogicEnabled()) return; + if (tracked_objects::GetTimeSourceType() != tracked_objects::TIME_SOURCE_TYPE_WALL_TIME) { // We currently only support the default time source, wall clock time. @@ -164,12 +166,10 @@ void ProfilerMetricsProvider::RecordProfilerData( } bool ProfilerMetricsProvider::IsCellularLogicEnabled() { -// For android get current connection type if the callback exists. -#if defined(OS_ANDROID) - if (!cellular_callback_.is_null()) - return cellular_callback_.Run(); -#endif - return false; + if (cellular_callback_.is_null()) + return false; + + return cellular_callback_.Run(); } } // namespace metrics |