// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_GCM_DRIVER_GCM_DESKTOP_UTILS_H_ #define COMPONENTS_GCM_DRIVER_GCM_DESKTOP_UTILS_H_ #include #include "base/memory/ref_counted.h" #include "base/task/sequenced_task_runner.h" #include "components/version_info/version_info.h" #include "mojo/public/cpp/bindings/pending_receiver.h" #include "services/network/public/mojom/proxy_resolving_socket.mojom-forward.h" class PrefService; namespace base { class FilePath; } namespace network { class NetworkConnectionTracker; class SharedURLLoaderFactory; } namespace gcm { class GCMDriver; class GCMClientFactory; std::unique_ptr CreateGCMDriverDesktop( std::unique_ptr gcm_client_factory, PrefService* prefs, const base::FilePath& store_path, bool remove_account_mappings_with_email_key, base::RepeatingCallback)> get_socket_factory_callback, scoped_refptr url_loader_factory, network::NetworkConnectionTracker* network_connection_tracker, version_info::Channel channel, const std::string& product_category_for_subtypes, const scoped_refptr& ui_task_runner, const scoped_refptr& io_task_runner, const scoped_refptr& blocking_task_runner); } // namespace gcm #endif // COMPONENTS_GCM_DRIVER_GCM_DESKTOP_UTILS_H_