| 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/macros.h" | 9 #include "base/macros.h" |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 class BrowserGpuChannelHostFactory; | 37 class BrowserGpuChannelHostFactory; |
| 38 class BrowserGpuMemoryBufferManager; | 38 class BrowserGpuMemoryBufferManager; |
| 39 class BrowserShutdownProfileDumper; | 39 class BrowserShutdownProfileDumper; |
| 40 class BrowserSurfaceViewManager; | 40 class BrowserSurfaceViewManager; |
| 41 class BrowserTestBase; | 41 class BrowserTestBase; |
| 42 class NestedMessagePumpAndroid; | 42 class NestedMessagePumpAndroid; |
| 43 class ScopedAllowWaitForAndroidLayoutTests; | 43 class ScopedAllowWaitForAndroidLayoutTests; |
| 44 class ScopedAllowWaitForDebugURL; | 44 class ScopedAllowWaitForDebugURL; |
| 45 class SoftwareOutputDeviceMus; | 45 class SoftwareOutputDeviceMus; |
| 46 class TextInputClientMac; | 46 class TextInputClientMac; |
| 47 class RasterWorkerPool; | 47 class CategorizedWorkerPool; |
| 48 } // namespace content | 48 } // namespace content |
| 49 namespace dbus { | 49 namespace dbus { |
| 50 class Bus; | 50 class Bus; |
| 51 } | 51 } |
| 52 namespace disk_cache { | 52 namespace disk_cache { |
| 53 class BackendImpl; | 53 class BackendImpl; |
| 54 class InFlightIO; | 54 class InFlightIO; |
| 55 } | 55 } |
| 56 namespace gpu { | 56 namespace gpu { |
| 57 class GpuChannelHost; | 57 class GpuChannelHost; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 friend class content::BrowserShutdownProfileDumper; | 192 friend class content::BrowserShutdownProfileDumper; |
| 193 friend class content::BrowserSurfaceViewManager; | 193 friend class content::BrowserSurfaceViewManager; |
| 194 friend class content::BrowserTestBase; | 194 friend class content::BrowserTestBase; |
| 195 friend class content::NestedMessagePumpAndroid; | 195 friend class content::NestedMessagePumpAndroid; |
| 196 friend class content::ScopedAllowWaitForAndroidLayoutTests; | 196 friend class content::ScopedAllowWaitForAndroidLayoutTests; |
| 197 friend class content::ScopedAllowWaitForDebugURL; | 197 friend class content::ScopedAllowWaitForDebugURL; |
| 198 friend class ::HistogramSynchronizer; | 198 friend class ::HistogramSynchronizer; |
| 199 friend class ::ScopedAllowWaitForLegacyWebViewApi; | 199 friend class ::ScopedAllowWaitForLegacyWebViewApi; |
| 200 friend class cc::CompletionEvent; | 200 friend class cc::CompletionEvent; |
| 201 friend class cc::SingleThreadTaskGraphRunner; | 201 friend class cc::SingleThreadTaskGraphRunner; |
| 202 friend class content::RasterWorkerPool; | 202 friend class content::CategorizedWorkerPool; |
| 203 friend class remoting::AutoThread; | 203 friend class remoting::AutoThread; |
| 204 friend class ui::WindowResizeHelperMac; | 204 friend class ui::WindowResizeHelperMac; |
| 205 friend class MessagePumpDefault; | 205 friend class MessagePumpDefault; |
| 206 friend class SequencedWorkerPool; | 206 friend class SequencedWorkerPool; |
| 207 friend class SimpleThread; | 207 friend class SimpleThread; |
| 208 friend class Thread; | 208 friend class Thread; |
| 209 friend class ThreadTestHelper; | 209 friend class ThreadTestHelper; |
| 210 friend class PlatformThread; | 210 friend class PlatformThread; |
| 211 friend class android::JavaHandlerThread; | 211 friend class android::JavaHandlerThread; |
| 212 friend class mojo::common::MessagePumpMojo; | 212 friend class mojo::common::MessagePumpMojo; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 | 259 |
| 260 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); | 260 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); |
| 261 }; | 261 }; |
| 262 | 262 |
| 263 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); | 263 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); |
| 264 }; | 264 }; |
| 265 | 265 |
| 266 } // namespace base | 266 } // namespace base |
| 267 | 267 |
| 268 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ | 268 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ |
| OLD | NEW |