| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef COMPONENTS_UPDATE_CLIENT_TASK_UPDATE_H_ | 5 #ifndef COMPONENTS_UPDATE_CLIENT_TASK_UPDATE_H_ |
| 6 #define COMPONENTS_UPDATE_CLIENT_TASK_UPDATE_H_ | 6 #define COMPONENTS_UPDATE_CLIENT_TASK_UPDATE_H_ |
| 7 | 7 |
| 8 #include <queue> | |
| 9 #include <string> | 8 #include <string> |
| 10 #include <vector> | 9 #include <vector> |
| 11 | 10 |
| 12 #include "base/callback.h" | 11 #include "base/callback.h" |
| 13 #include "base/macros.h" | 12 #include "base/macros.h" |
| 14 #include "base/threading/thread_checker.h" | 13 #include "base/threading/thread_checker.h" |
| 15 #include "components/update_client/task.h" | 14 #include "components/update_client/task.h" |
| 16 #include "components/update_client/update_client.h" | 15 #include "components/update_client/update_client.h" |
| 17 | 16 |
| 18 namespace update_client { | 17 namespace update_client { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 const std::vector<std::string> ids_; | 57 const std::vector<std::string> ids_; |
| 59 const UpdateClient::CrxDataCallback crx_data_callback_; | 58 const UpdateClient::CrxDataCallback crx_data_callback_; |
| 60 const Callback callback_; | 59 const Callback callback_; |
| 61 | 60 |
| 62 DISALLOW_COPY_AND_ASSIGN(TaskUpdate); | 61 DISALLOW_COPY_AND_ASSIGN(TaskUpdate); |
| 63 }; | 62 }; |
| 64 | 63 |
| 65 } // namespace update_client | 64 } // namespace update_client |
| 66 | 65 |
| 67 #endif // COMPONENTS_UPDATE_CLIENT_TASK_UPDATE_H_ | 66 #endif // COMPONENTS_UPDATE_CLIENT_TASK_UPDATE_H_ |
| OLD | NEW |