OLD | NEW |
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 BASE_THREADING_THREAD_RESTRICTIONS_H_ | 5 #ifndef BASE_THREADING_THREAD_RESTRICTIONS_H_ |
6 #define BASE_THREADING_THREAD_RESTRICTIONS_H_ | 6 #define BASE_THREADING_THREAD_RESTRICTIONS_H_ |
7 | 7 |
8 #include "base/base_export.h" | 8 #include "base/base_export.h" |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 class BlockingMethodCaller; | 27 class BlockingMethodCaller; |
28 namespace system { | 28 namespace system { |
29 class StatisticsProviderImpl; | 29 class StatisticsProviderImpl; |
30 } | 30 } |
31 } | 31 } |
32 namespace chrome_browser_net { | 32 namespace chrome_browser_net { |
33 class Predictor; | 33 class Predictor; |
34 } | 34 } |
35 namespace content { | 35 namespace content { |
36 class BrowserGpuChannelHostFactory; | 36 class BrowserGpuChannelHostFactory; |
| 37 class GLHelper; |
37 } | 38 } |
38 namespace dbus { | 39 namespace dbus { |
39 class Bus; | 40 class Bus; |
40 } | 41 } |
41 namespace disk_cache { | 42 namespace disk_cache { |
42 class BackendImpl; | 43 class BackendImpl; |
43 class InFlightIO; | 44 class InFlightIO; |
44 } | 45 } |
45 namespace gdata { | 46 namespace gdata { |
46 class GDataFileSystem; | 47 class GDataFileSystem; |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 // END ALLOWED USAGE. | 168 // END ALLOWED USAGE. |
168 // BEGIN USAGE THAT NEEDS TO BE FIXED. | 169 // BEGIN USAGE THAT NEEDS TO BE FIXED. |
169 friend class ::chromeos::AudioMixerAlsa; // http://crbug.com/125206 | 170 friend class ::chromeos::AudioMixerAlsa; // http://crbug.com/125206 |
170 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360 | 171 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360 |
171 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/
125385 | 172 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/
125385 |
172 friend class browser_sync::NonFrontendDataTypeController; // http://crbug.com
/19757 | 173 friend class browser_sync::NonFrontendDataTypeController; // http://crbug.com
/19757 |
173 friend class browser_sync::UIModelWorker; // http://crbug.com/19757 | 174 friend class browser_sync::UIModelWorker; // http://crbug.com/19757 |
174 friend class chrome_browser_net::Predictor; // http://crbug.com/78451 | 175 friend class chrome_browser_net::Predictor; // http://crbug.com/78451 |
175 friend class | 176 friend class |
176 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248 | 177 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248 |
| 178 friend class content::GLHelper; // http://crbug.com/125415 |
177 friend class dbus::Bus; // http://crbug.com/125222 | 179 friend class dbus::Bus; // http://crbug.com/125222 |
178 friend class disk_cache::BackendImpl; // http://crbug.com/74623 | 180 friend class disk_cache::BackendImpl; // http://crbug.com/74623 |
179 friend class disk_cache::InFlightIO; // http://crbug.com/74623 | 181 friend class disk_cache::InFlightIO; // http://crbug.com/74623 |
180 friend class gdata::GDataFileSystem; // http://crbug.com/125220 | 182 friend class gdata::GDataFileSystem; // http://crbug.com/125220 |
181 friend class media::AudioOutputController; // http://crbug.com/120973 | 183 friend class media::AudioOutputController; // http://crbug.com/120973 |
182 friend class net::FileStreamPosix; // http://crbug.com/115067 | 184 friend class net::FileStreamPosix; // http://crbug.com/115067 |
183 friend class net::FileStreamWin; // http://crbug.com/115067 | 185 friend class net::FileStreamWin; // http://crbug.com/115067 |
184 friend class net::NetworkManagerApi; // http://crbug.com/125097 | 186 friend class net::NetworkManagerApi; // http://crbug.com/125097 |
185 friend class ::AcceleratedPresenter; // http://crbug.com/125391 | 187 friend class ::AcceleratedPresenter; // http://crbug.com/125391 |
186 friend class ::BrowserProcessImpl; // http://crbug.com/125207 | 188 friend class ::BrowserProcessImpl; // http://crbug.com/125207 |
(...skipping 24 matching lines...) Expand all Loading... |
211 | 213 |
212 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); | 214 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); |
213 }; | 215 }; |
214 | 216 |
215 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); | 217 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); |
216 }; | 218 }; |
217 | 219 |
218 } // namespace base | 220 } // namespace base |
219 | 221 |
220 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ | 222 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ |
OLD | NEW |