Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: chrome/browser/feedback/system_logs/log_sources/chrome_internal_log_source.h

Issue 2968613002: Move some of c/b/feedback/system_logs to //components/feedback (Closed)
Patch Set: fix include Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_source.h" 10 #include "components/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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698