#ifndef CHROME_BROWSER_PRIVACY_SANDBOX_MOCK_PRIVACY_SANDBOX_SERVICE_H_
#define CHROME_BROWSER_PRIVACY_SANDBOX_MOCK_PRIVACY_SANDBOX_SERVICE_H_
#include <memory>
#include "chrome/browser/privacy_sandbox/privacy_sandbox_service.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace content {
class BrowserContext;
}
namespace views {
class Widget;
}
class KeyedService;
class MockPrivacySandboxService : public PrivacySandboxService { … };
std::unique_ptr<KeyedService> BuildMockPrivacySandboxService(
content::BrowserContext* context);
#endif