#ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_DECLARATIVE_CONTENT_CSS_CONDITION_TRACKER_H_
#define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_CONTENT_DECLARATIVE_CONTENT_CSS_CONDITION_TRACKER_H_
#include <map>
#include <memory>
#include <set>
#include <string>
#include <unordered_set>
#include <vector>
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "chrome/browser/extensions/api/declarative_content/content_predicate_evaluator.h"
#include "content/public/browser/render_process_host_creation_observer.h"
#include "content/public/browser/web_contents_observer.h"
namespace base {
class Value;
}
namespace extensions {
class Extension;
class DeclarativeContentCssPredicate : public ContentPredicate { … };
class DeclarativeContentCssConditionTracker
: public ContentPredicateEvaluator,
public content::RenderProcessHostCreationObserver { … };
}
#endif