blob: d1118ddc206fcd808177c43bc44d183d3217650b [file] [log] [blame]
// 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 EXTENSIONS_BROWSER_API_FEEDBACK_PRIVATE_LOG_SOURCE_RESOURCE_H_
#define EXTENSIONS_BROWSER_API_FEEDBACK_PRIVATE_LOG_SOURCE_RESOURCE_H_
#include <memory>
#include "base/callback.h"
#include "base/macros.h"
#include "components/feedback/system_logs/system_logs_fetcher.h"
#include "content/public/browser/browser_thread.h"
#include "extensions/browser/api/api_resource.h"
#include "extensions/browser/api/api_resource_manager.h"
#include "extensions/browser/api/feedback_private/log_source_access_manager.h"
namespace extensions {
// Holds a SystemLogsSource object that is used by an extension using the
// feedbackPrivate API.
class LogSourceResource : public ApiResource {
public:
static const content::BrowserThread::ID kThreadId =
content::BrowserThread::UI;
LogSourceResource(const std::string& extension_id,
std::unique_ptr<system_logs::SystemLogsSource> source);
~LogSourceResource() override;
system_logs::SystemLogsSource* GetLogSource() const { return source_.get(); }
void set_unregister_callback(const base::Closure& unregister_callback) {
unregister_callback_ = unregister_callback;
}
private:
friend class ApiResourceManager<LogSourceResource>;
static const char* service_name() { return "LogSourceResource"; }
std::unique_ptr<system_logs::SystemLogsSource> source_;
// This unregisters the LogSourceResource from a LogSourceAccessManager when
// this resource is cleaned up.
base::Closure unregister_callback_;
DISALLOW_COPY_AND_ASSIGN(LogSourceResource);
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_FEEDBACK_PRIVATE_LOG_SOURCE_RESOURCE_H_