Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1405)

Side by Side Diff: sync/internal_api/public/attachments/task_queue.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #ifndef SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_TASK_QUEUE_H_ 5 #ifndef SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_TASK_QUEUE_H_
6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_TASK_QUEUE_H_ 6 #define SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_TASK_QUEUE_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9
9 #include <deque> 10 #include <deque>
10 #include <set> 11 #include <set>
11 #include <utility> 12 #include <utility>
12 13
13 #include "base/bind.h" 14 #include "base/bind.h"
14 #include "base/callback.h" 15 #include "base/callback.h"
15 #include "base/macros.h" 16 #include "base/macros.h"
17 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
17 #include "base/message_loop/message_loop.h" 19 #include "base/message_loop/message_loop.h"
18 #include "base/threading/non_thread_safe.h" 20 #include "base/threading/non_thread_safe.h"
19 #include "base/time/time.h" 21 #include "base/time/time.h"
20 #include "base/timer/timer.h" 22 #include "base/timer/timer.h"
21 #include "net/base/backoff_entry.h" 23 #include "net/base/backoff_entry.h"
22 24
23 namespace syncer { 25 namespace syncer {
24 26
25 // A queue that dispatches tasks, ignores duplicates, and provides backoff 27 // A queue that dispatches tasks, ignores duplicates, and provides backoff
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 } 277 }
276 278
277 template <typename T> 279 template <typename T>
278 bool TaskQueue<T>::ShouldDispatch() { 280 bool TaskQueue<T>::ShouldDispatch() {
279 return num_in_progress_ < kMaxConcurrentTasks && !queue_.empty(); 281 return num_in_progress_ < kMaxConcurrentTasks && !queue_.empty();
280 } 282 }
281 283
282 } // namespace syncer 284 } // namespace syncer
283 285
284 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_TASK_QUEUE_H_ 286 #endif // SYNC_INTERNAL_API_PUBLIC_ATTACHMENTS_TASK_QUEUE_H_
OLDNEW
« no previous file with comments | « sync/api/model_type_store.h ('k') | third_party/WebKit/Source/platform/web_process_memory_dump_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698