// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GOOGLE_APIS_GCM_ENGINE_GCM_REQUEST_TEST_BASE_H_ #define GOOGLE_APIS_GCM_ENGINE_GCM_REQUEST_TEST_BASE_H_ #include "base/memory/ref_counted.h" #include "base/test/task_environment.h" #include "net/base/backoff_entry.h" #include "services/network/test/test_url_loader_factory.h" #include "testing/gtest/include/gtest/gtest.h" namespace network { class SharedURLLoaderFactory; } namespace gcm { // The base class for testing various GCM requests that contains all the common // logic to set up a task runner and complete a request with retries. class GCMRequestTestBase : public testing::Test { … }; } // namespace gcm #endif // GOOGLE_APIS_GCM_ENGINE_GCM_REQUEST_TEST_BASE_H_