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

Side by Side Diff: jingle/glue/thread_wrapper.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
« no previous file with comments | « ipc/unix_domain_socket_util_unittest.cc ('k') | media/base/audio_pull_fifo.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 JINGLE_GLUE_THREAD_WRAPPER_H_ 5 #ifndef JINGLE_GLUE_THREAD_WRAPPER_H_
6 #define JINGLE_GLUE_THREAD_WRAPPER_H_ 6 #define JINGLE_GLUE_THREAD_WRAPPER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <list> 10 #include <list>
11 #include <map> 11 #include <map>
12 12
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/scoped_ptr.h"
15 #include "base/message_loop/message_loop.h" 16 #include "base/message_loop/message_loop.h"
16 #include "base/synchronization/lock.h" 17 #include "base/synchronization/lock.h"
17 #include "base/synchronization/waitable_event.h" 18 #include "base/synchronization/waitable_event.h"
18 #include "third_party/webrtc/base/thread.h" 19 #include "third_party/webrtc/base/thread.h"
19 20
20 namespace jingle_glue { 21 namespace jingle_glue {
21 22
22 // JingleThreadWrapper implements rtc::Thread interface on top of 23 // JingleThreadWrapper implements rtc::Thread interface on top of
23 // Chromium's SingleThreadTaskRunner interface. Currently only the bare minimum 24 // Chromium's SingleThreadTaskRunner interface. Currently only the bare minimum
24 // that is used by P2P part of libjingle is implemented. There are two ways to 25 // that is used by P2P part of libjingle is implemented. There are two ways to
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 125
125 base::WeakPtr<JingleThreadWrapper> weak_ptr_; 126 base::WeakPtr<JingleThreadWrapper> weak_ptr_;
126 base::WeakPtrFactory<JingleThreadWrapper> weak_ptr_factory_; 127 base::WeakPtrFactory<JingleThreadWrapper> weak_ptr_factory_;
127 128
128 DISALLOW_COPY_AND_ASSIGN(JingleThreadWrapper); 129 DISALLOW_COPY_AND_ASSIGN(JingleThreadWrapper);
129 }; 130 };
130 131
131 } // namespace jingle_glue 132 } // namespace jingle_glue
132 133
133 #endif // JINGLE_GLUE_THREAD_WRAPPER_H_ 134 #endif // JINGLE_GLUE_THREAD_WRAPPER_H_
OLDNEW
« no previous file with comments | « ipc/unix_domain_socket_util_unittest.cc ('k') | media/base/audio_pull_fifo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698