#ifndef CHROME_BROWSER_TRUSTED_VAULT_TRUSTED_VAULT_ENCRYPTION_KEYS_TAB_HELPER_H_
#define CHROME_BROWSER_TRUSTED_VAULT_TRUSTED_VAULT_ENCRYPTION_KEYS_TAB_HELPER_H_
#include "base/memory/raw_ptr.h"
#include "chrome/common/trusted_vault_encryption_keys_extension.mojom.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_contents_user_data.h"
class EnclaveManager;
namespace content {
class RenderFrameHost;
class WebContents;
class NavigationHandle;
}
namespace trusted_vault {
class TrustedVaultService;
}
class TrustedVaultEncryptionKeysTabHelper
: public content::WebContentsUserData<TrustedVaultEncryptionKeysTabHelper>,
public content::WebContentsObserver { … };
#endif