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

Side by Side Diff: components/feedback/system_logs/system_logs_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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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_SYSTEM_LOGS_SOURCE_H_ 5 #ifndef COMPONENTS_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_
6 #define CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_ 6 #define COMPONENTS_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "components/feedback/feedback_common.h" 11 #include "components/feedback/feedback_common.h"
12 12
13 namespace system_logs { 13 namespace system_logs {
14 14
15 using SystemLogsResponse = FeedbackCommon::SystemLogsMap; 15 using SystemLogsResponse = FeedbackCommon::SystemLogsMap;
16 16
(...skipping 12 matching lines...) Expand all
29 virtual void Fetch(const SysLogsSourceCallback& callback) = 0; 29 virtual void Fetch(const SysLogsSourceCallback& callback) = 0;
30 30
31 const std::string& source_name() const { return source_name_; } 31 const std::string& source_name() const { return source_name_; }
32 32
33 private: 33 private:
34 std::string source_name_; 34 std::string source_name_;
35 }; 35 };
36 36
37 } // namespace system_logs 37 } // namespace system_logs
38 38
39 #endif // CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_ 39 #endif // COMPONENTS_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_
OLDNEW
« no previous file with comments | « components/feedback/system_logs/system_logs_fetcher.cc ('k') | components/feedback/system_logs/system_logs_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698