#ifndef CHROME_BROWSER_EXTENSIONS_API_HISTORY_HISTORY_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_HISTORY_HISTORY_API_H_
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/scoped_observation.h"
#include "base/task/cancelable_task_tracker.h"
#include "base/values.h"
#include "chrome/common/extensions/api/history.h"
#include "components/history/core/browser/history_service.h"
#include "components/history/core/browser/history_service_observer.h"
#include "extensions/browser/browser_context_keyed_api_factory.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_function.h"
class Profile;
namespace extensions {
class HistoryEventRouter : public history::HistoryServiceObserver { … };
class HistoryAPI : public BrowserContextKeyedAPI, public EventRouter::Observer { … };
template <>
void BrowserContextKeyedAPIFactory<HistoryAPI>::DeclareFactoryDependencies();
class HistoryFunction : public ExtensionFunction { … };
class HistoryFunctionWithCallback : public HistoryFunction { … };
class HistoryGetVisitsFunction : public HistoryFunctionWithCallback { … };
class HistorySearchFunction : public HistoryFunctionWithCallback { … };
class HistoryAddUrlFunction : public HistoryFunction { … };
class HistoryDeleteAllFunction : public HistoryFunctionWithCallback { … };
class HistoryDeleteUrlFunction : public HistoryFunction { … };
class HistoryDeleteRangeFunction : public HistoryFunctionWithCallback { … };
}
#endif