| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 REMOTING_HOST_USAGE_STATS_CONSENT_H_ | 5 #ifndef REMOTING_HOST_USAGE_STATS_CONSENT_H_ |
| 6 #define REMOTING_HOST_USAGE_STATS_CONSENT_H_ | 6 #define REMOTING_HOST_USAGE_STATS_CONSENT_H_ |
| 7 | 7 |
| 8 namespace remoting { | 8 namespace remoting { |
| 9 | 9 |
| 10 // Returns true if the user has agreed to crash dump collection and uploading. | 10 // Retrieves the user's consent to collect crash dumps and gather usage |
| 11 bool IsCrashReportingEnabled(); | 11 // statistics. |
| 12 bool GetUsageStatsConsent(bool* allowed, bool* set_by_policy); |
| 13 |
| 14 // Retrieves the effective user's consent to collect crash dumps and gather |
| 15 // usage statistics. In most cases the returned value matches |allowed| returned |
| 16 // by GetUsageStatsConsent(). If GetUsageStatsConsent() fails this routine |
| 17 // reports that crash dump repoting is disabled. |
| 18 bool IsUsageStatsAllowed(); |
| 19 |
| 20 // Records the user's consent to collect crash dumps and gather usage |
| 21 // statistics. |
| 22 bool SetUsageStatsConsent(bool allowed); |
| 12 | 23 |
| 13 } // remoting | 24 } // remoting |
| 14 | 25 |
| 15 #endif // REMOTING_HOST_USAGE_STATS_CONSENT_H_ | 26 #endif // REMOTING_HOST_USAGE_STATS_CONSENT_H_ |
| OLD | NEW |