| 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 20 matching lines...) Expand all Loading... |
| 31 } | 31 } |
| 32 } | 32 } |
| 33 namespace chrome_browser_net { | 33 namespace chrome_browser_net { |
| 34 class Predictor; | 34 class Predictor; |
| 35 } | 35 } |
| 36 namespace content { | 36 namespace content { |
| 37 class BrowserGpuChannelHostFactory; | 37 class BrowserGpuChannelHostFactory; |
| 38 class BrowserGpuMemoryBufferManager; | 38 class BrowserGpuMemoryBufferManager; |
| 39 class BrowserShutdownProfileDumper; | 39 class BrowserShutdownProfileDumper; |
| 40 class BrowserTestBase; | 40 class BrowserTestBase; |
| 41 class ChromeGpuChannelHostIPCTransport; |
| 41 class GpuChannelHost; | 42 class GpuChannelHost; |
| 42 class NestedMessagePumpAndroid; | 43 class NestedMessagePumpAndroid; |
| 43 class ScopedAllowWaitForAndroidLayoutTests; | 44 class ScopedAllowWaitForAndroidLayoutTests; |
| 44 class ScopedAllowWaitForDebugURL; | 45 class ScopedAllowWaitForDebugURL; |
| 45 class SoftwareOutputDeviceMus; | 46 class SoftwareOutputDeviceMus; |
| 46 class TextInputClientMac; | 47 class TextInputClientMac; |
| 47 class RasterWorkerPool; | 48 class RasterWorkerPool; |
| 48 } // namespace content | 49 } // namespace content |
| 49 namespace dbus { | 50 namespace dbus { |
| 50 class Bus; | 51 class Bus; |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 215 |
| 215 // END ALLOWED USAGE. | 216 // END ALLOWED USAGE. |
| 216 // BEGIN USAGE THAT NEEDS TO BE FIXED. | 217 // BEGIN USAGE THAT NEEDS TO BE FIXED. |
| 217 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360 | 218 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360 |
| 218 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/
125385 | 219 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/
125385 |
| 219 friend class chrome_browser_net::Predictor; // http://crbug.com/78451 | 220 friend class chrome_browser_net::Predictor; // http://crbug.com/78451 |
| 220 friend class | 221 friend class |
| 221 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248 | 222 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248 |
| 222 friend class | 223 friend class |
| 223 content::BrowserGpuMemoryBufferManager; // http://crbug.com/420368 | 224 content::BrowserGpuMemoryBufferManager; // http://crbug.com/420368 |
| 225 friend class content::ChromeGpuChannelHostIPCTransport; |
| 224 friend class content::GpuChannelHost; // http://crbug.com/125264 | 226 friend class content::GpuChannelHost; // http://crbug.com/125264 |
| 225 friend class content::TextInputClientMac; // http://crbug.com/121917 | 227 friend class content::TextInputClientMac; // http://crbug.com/121917 |
| 226 friend class dbus::Bus; // http://crbug.com/125222 | 228 friend class dbus::Bus; // http://crbug.com/125222 |
| 227 friend class disk_cache::BackendImpl; // http://crbug.com/74623 | 229 friend class disk_cache::BackendImpl; // http://crbug.com/74623 |
| 228 friend class disk_cache::InFlightIO; // http://crbug.com/74623 | 230 friend class disk_cache::InFlightIO; // http://crbug.com/74623 |
| 229 friend class net::internal::AddressTrackerLinux; // http://crbug.com/125097 | 231 friend class net::internal::AddressTrackerLinux; // http://crbug.com/125097 |
| 230 friend class net::NetworkChangeNotifierMac; // http://crbug.com/125097 | 232 friend class net::NetworkChangeNotifierMac; // http://crbug.com/125097 |
| 231 friend class ::BrowserProcessImpl; // http://crbug.com/125207 | 233 friend class ::BrowserProcessImpl; // http://crbug.com/125207 |
| 232 friend class ::NativeBackendKWallet; // http://crbug.com/125331 | 234 friend class ::NativeBackendKWallet; // http://crbug.com/125331 |
| 233 #if !defined(OFFICIAL_BUILD) | 235 #if !defined(OFFICIAL_BUILD) |
| (...skipping 23 matching lines...) Expand all Loading... |
| 257 | 259 |
| 258 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); | 260 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); |
| 259 }; | 261 }; |
| 260 | 262 |
| 261 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); | 263 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); |
| 262 }; | 264 }; |
| 263 | 265 |
| 264 } // namespace base | 266 } // namespace base |
| 265 | 267 |
| 266 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ | 268 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ |
| OLD | NEW |