| 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.h" | 10 #include "chrome/browser/feedback/system_logs/system_logs_source.h" |
| 11 | 11 |
| 12 namespace system_logs { | 12 namespace system_logs { |
| 13 | 13 |
| 14 // Fetches internal Chrome logs. | 14 // Fetches internal Chrome logs. |
| 15 class ChromeInternalLogSource : public SystemLogsSource { | 15 class ChromeInternalLogSource : public SystemLogsSource { |
| 16 public: | 16 public: |
| 17 ChromeInternalLogSource(); | 17 ChromeInternalLogSource(); |
| 18 ~ChromeInternalLogSource() override; | 18 ~ChromeInternalLogSource() override; |
| 19 | 19 |
| 20 // SystemLogsSource override. | 20 // SystemLogsSource override. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 35 void PopulateEnrolledToDomain(SystemLogsResponse* response); | 35 void PopulateEnrolledToDomain(SystemLogsResponse* response); |
| 36 void PopulateInstallerBrandCode(SystemLogsResponse* response); | 36 void PopulateInstallerBrandCode(SystemLogsResponse* response); |
| 37 #endif | 37 #endif |
| 38 | 38 |
| 39 DISALLOW_COPY_AND_ASSIGN(ChromeInternalLogSource); | 39 DISALLOW_COPY_AND_ASSIGN(ChromeInternalLogSource); |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 } // namespace system_logs | 42 } // namespace system_logs |
| 43 | 43 |
| 44 #endif // CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_S
OURCE_H_ | 44 #endif // CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_LOG_SOURCES_CHROME_INTERNAL_LOG_S
OURCE_H_ |
| OLD | NEW |