#include "chrome/browser/ui/webui/sync_file_system_internals/dump_database_handler.h"
#include "base/functional/bind.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync_file_system/sync_file_system_service.h"
#include "chrome/browser/sync_file_system/sync_file_system_service_factory.h"
#include "content/public/browser/web_ui.h"
#include "content/public/browser/web_ui_data_source.h"
SyncFileSystemServiceFactory;
namespace syncfs_internals {
DumpDatabaseHandler::DumpDatabaseHandler(Profile* profile)
: … { … }
DumpDatabaseHandler::~DumpDatabaseHandler() { … }
void DumpDatabaseHandler::RegisterMessages() { … }
void DumpDatabaseHandler::HandleGetDatabaseDump(const base::Value::List& args) { … }
void DumpDatabaseHandler::DidGetDatabaseDump(std::string callback_id,
base::Value::List list) { … }
}