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

Unified Diff: chrome/browser/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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/feedback/system_logs/system_logs_source.h
diff --git a/chrome/browser/feedback/system_logs/system_logs_source.h b/chrome/browser/feedback/system_logs/system_logs_source.h
deleted file mode 100644
index 71357217451bfe4352744b789f5072dd08f744cd..0000000000000000000000000000000000000000
--- a/chrome/browser/feedback/system_logs/system_logs_source.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_
-#define CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_
-
-#include <string>
-
-#include "base/callback.h"
-#include "components/feedback/feedback_common.h"
-
-namespace system_logs {
-
-using SystemLogsResponse = FeedbackCommon::SystemLogsMap;
-
-// Callback that the data sources use to return data.
-using SysLogsSourceCallback = base::Callback<void(SystemLogsResponse*)>;
-
-// The SystemLogsSource provides an interface for the data sources that
-// the SystemLogsFetcher class uses to fetch logs and other information.
-class SystemLogsSource {
- public:
- // |source_name| provides a descriptive identifier for debugging.
- explicit SystemLogsSource(const std::string& source_name);
- virtual ~SystemLogsSource();
-
- // Fetches data and passes it by pointer to the callback
- virtual void Fetch(const SysLogsSourceCallback& callback) = 0;
-
- const std::string& source_name() const { return source_name_; }
-
- private:
- std::string source_name_;
-};
-
-} // namespace system_logs
-
-#endif // CHROME_BROWSER_FEEDBACK_SYSTEM_LOGS_SYSTEM_LOGS_SOURCE_H_
« no previous file with comments | « chrome/browser/feedback/system_logs/system_logs_fetcher.cc ('k') | chrome/browser/feedback/system_logs/system_logs_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698