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

Side by Side Diff: webrtc/base/sequenced_task_checker_impl.h

Issue 2464383002: Use queue label as id in SequencedTaskChecker when not running on TaskQueue (Closed)
Patch Set: code review Created 4 years, 1 month 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
« no previous file with comments | « no previous file | webrtc/base/sequenced_task_checker_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 16 matching lines...) Expand all
27 ~SequencedTaskCheckerImpl(); 27 ~SequencedTaskCheckerImpl();
28 28
29 bool CalledSequentially() const; 29 bool CalledSequentially() const;
30 30
31 // Changes the task queue or thread that is checked for in IsCurrent. This 31 // Changes the task queue or thread that is checked for in IsCurrent. This
32 // may be useful when an object may be created on one task queue / thread and 32 // may be useful when an object may be created on one task queue / thread and
33 // then used exclusively on another thread. 33 // then used exclusively on another thread.
34 void Detach(); 34 void Detach();
35 35
36 private: 36 private:
37 typedef const void* QueueId;
37 CriticalSection lock_; 38 CriticalSection lock_;
38 ThreadChecker thread_checker_; 39 ThreadChecker thread_checker_;
39 mutable bool attached_; 40 mutable bool attached_;
40 mutable TaskQueue* valid_queue_; 41 mutable QueueId valid_queue_;
41 }; 42 };
42 43
43 } // namespace rtc 44 } // namespace rtc
44 #endif // WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_ 45 #endif // WEBRTC_BASE_SEQUENCED_TASK_CHECKER_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/base/sequenced_task_checker_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698