#include "content/browser/background_sync/one_shot_background_sync_service_impl.h"
#include "base/memory/raw_ptr.h"
#include "content/browser/background_sync/background_sync_service_impl_test_harness.h"
#include "content/public/test/mock_render_process_host.h"
#include "url/origin.h"
namespace content {
class OneShotBackgroundSyncServiceImplTest
: public BackgroundSyncServiceImplTestHarness { … };
TEST_F(OneShotBackgroundSyncServiceImplTest, RegisterOneShotSync) { … }
TEST_F(OneShotBackgroundSyncServiceImplTest, RegisterWithInvalidOptions) { … }
TEST_F(OneShotBackgroundSyncServiceImplTest,
GetOneShotSyncRegistrationsNoSyncRegistered) { … }
TEST_F(OneShotBackgroundSyncServiceImplTest,
GetOneShotSyncRegistrationsWithRegisteredSync) { … }
}