| OLD | NEW |
| 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 #ifndef CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_SOUR
CE_H_ | 5 #ifndef CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_SOUR
CE_H_ |
| 6 #define CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_SOUR
CE_H_ | 6 #define CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_SOUR
CE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "chrome/browser/feedback/system_logs/system_logs_fetcher_base.h" | 10 #include "chrome/browser/feedback/system_logs/system_logs_fetcher_base.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 void PopulateSyncLogs(SystemLogsResponse* response); | 24 void PopulateSyncLogs(SystemLogsResponse* response); |
| 25 void PopulateExtensionInfoLogs(SystemLogsResponse* response); | 25 void PopulateExtensionInfoLogs(SystemLogsResponse* response); |
| 26 void PopulateDataReductionProxyLogs(SystemLogsResponse* response); | 26 void PopulateDataReductionProxyLogs(SystemLogsResponse* response); |
| 27 | 27 |
| 28 #if defined(OS_CHROMEOS) | 28 #if defined(OS_CHROMEOS) |
| 29 void PopulateLocalStateSettings(SystemLogsResponse* response); | 29 void PopulateLocalStateSettings(SystemLogsResponse* response); |
| 30 #endif // defined(OS_CHROMEOS) | 30 #endif // defined(OS_CHROMEOS) |
| 31 | 31 |
| 32 #if defined(OS_WIN) | 32 #if defined(OS_WIN) |
| 33 void PopulateUsbKeyboardDetected(SystemLogsResponse* response); | 33 void PopulateUsbKeyboardDetected(SystemLogsResponse* response); |
| 34 void PopulateEnrolledToDomain(SystemLogsResponse* response); |
| 34 #endif | 35 #endif |
| 35 | 36 |
| 36 DISALLOW_COPY_AND_ASSIGN(ChromeInternalLogSource); | 37 DISALLOW_COPY_AND_ASSIGN(ChromeInternalLogSource); |
| 37 }; | 38 }; |
| 38 | 39 |
| 39 } // namespace system_logs | 40 } // namespace system_logs |
| 40 | 41 |
| 41 #endif // CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_S
OURCE_H_ | 42 #endif // CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_S
OURCE_H_ |
| OLD | NEW |