| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/gcm_driver/gcm_desktop_utils.h" | 5 #include "components/gcm_driver/gcm_desktop_utils.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/sequenced_task_runner.h" | 8 #include "base/sequenced_task_runner.h" |
| 9 #include "base/threading/sequenced_worker_pool.h" | 9 #include "base/threading/sequenced_worker_pool.h" |
| 10 #include "build/build_config.h" |
| 10 #include "components/gcm_driver/gcm_client_factory.h" | 11 #include "components/gcm_driver/gcm_client_factory.h" |
| 11 #include "components/gcm_driver/gcm_driver.h" | 12 #include "components/gcm_driver/gcm_driver.h" |
| 12 #include "components/gcm_driver/gcm_driver_desktop.h" | 13 #include "components/gcm_driver/gcm_driver_desktop.h" |
| 13 #include "components/sync_driver/sync_util.h" | 14 #include "components/sync_driver/sync_util.h" |
| 14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 15 | 16 |
| 16 namespace gcm { | 17 namespace gcm { |
| 17 | 18 |
| 18 namespace { | 19 namespace { |
| 19 | 20 |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 GetUserAgent(channel), | 98 GetUserAgent(channel), |
| 98 prefs, | 99 prefs, |
| 99 store_path, | 100 store_path, |
| 100 request_context, | 101 request_context, |
| 101 ui_task_runner, | 102 ui_task_runner, |
| 102 io_task_runner, | 103 io_task_runner, |
| 103 blocking_task_runner)); | 104 blocking_task_runner)); |
| 104 } | 105 } |
| 105 | 106 |
| 106 } // namespace gcm | 107 } // namespace gcm |
| OLD | NEW |