OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/metrics/chrome_metrics_service_client.h" | 5 #include "chrome/browser/metrics/chrome_metrics_service_client.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 break; | 677 break; |
678 | 678 |
679 default: | 679 default: |
680 NOTREACHED(); | 680 NOTREACHED(); |
681 } | 681 } |
682 } | 682 } |
683 | 683 |
684 void ChromeMetricsServiceClient::OnURLOpenedFromOmnibox(OmniboxLog* log) { | 684 void ChromeMetricsServiceClient::OnURLOpenedFromOmnibox(OmniboxLog* log) { |
685 metrics_service_->OnApplicationNotIdle(); | 685 metrics_service_->OnApplicationNotIdle(); |
686 } | 686 } |
| 687 |
| 688 bool ChromeMetricsServiceClient::IsUMACellularUploadLogicEnabled() { |
| 689 return IsCellularLogicEnabled(); |
| 690 } |
OLD | NEW |