Index: components/gcm_driver/gcm_desktop_utils.h |
diff --git a/chrome/browser/services/gcm/gcm_desktop_utils.h b/components/gcm_driver/gcm_desktop_utils.h |
similarity index 56% |
rename from chrome/browser/services/gcm/gcm_desktop_utils.h |
rename to components/gcm_driver/gcm_desktop_utils.h |
index 8105829d017233a59073fd6a942eb44204d2644d..b7e62e400c850a154fb7e1fae74bee84fef9beb1 100644 |
--- a/chrome/browser/services/gcm/gcm_desktop_utils.h |
+++ b/components/gcm_driver/gcm_desktop_utils.h |
@@ -2,11 +2,13 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef CHROME_BROWSER_SERVICES_GCM_GCM_DESKTOP_UTILS_H_ |
-#define CHROME_BROWSER_SERVICES_GCM_GCM_DESKTOP_UTILS_H_ |
+#ifndef COMPONENTS_GCM_DRIVER_GCM_GCM_DESKTOP_UTILS_H_ |
+#define COMPONENTS_GCM_DRIVER_GCM_GCM_DESKTOP_UTILS_H_ |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
+#include "base/sequenced_task_runner.h" |
+#include "components/version_info/version_info.h" |
class PrefService; |
namespace base { |
@@ -26,8 +28,12 @@ scoped_ptr<GCMDriver> CreateGCMDriverDesktop( |
scoped_ptr<GCMClientFactory> gcm_client_factory, |
PrefService* prefs, |
const base::FilePath& store_path, |
- const scoped_refptr<net::URLRequestContextGetter>& request_context); |
+ const scoped_refptr<net::URLRequestContextGetter>& request_context, |
+ version_info::Channel channel, |
+ const scoped_refptr<base::SequencedTaskRunner>& ui_task_runner, |
+ const scoped_refptr<base::SequencedTaskRunner>& io_task_runner, |
+ const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner); |
} // namespace gcm |
-#endif // CHROME_BROWSER_SERVICES_GCM_GCM_DESKTOP_UTILS_H_ |
+#endif // COMPONENTS_GCM_DRIVER_GCM_GCM_DESKTOP_UTILS_H_ |