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

Side by Side Diff: base/threading/thread_restrictions.h

Issue 634083002: gpu: Compositor management of GpuMemoryBuffer instances. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cc-pre-chromium-image-refactor
Patch Set: rebase Created 6 years, 2 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 | « android_webview/browser/hardware_renderer.cc ('k') | cc/BUILD.gn » ('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 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 23 matching lines...) Expand all
34 class BlockingMethodCaller; 34 class BlockingMethodCaller;
35 namespace system { 35 namespace system {
36 class StatisticsProviderImpl; 36 class StatisticsProviderImpl;
37 } 37 }
38 } 38 }
39 namespace chrome_browser_net { 39 namespace chrome_browser_net {
40 class Predictor; 40 class Predictor;
41 } 41 }
42 namespace content { 42 namespace content {
43 class BrowserGpuChannelHostFactory; 43 class BrowserGpuChannelHostFactory;
44 class BrowserGpuMemoryBufferManager;
44 class BrowserShutdownProfileDumper; 45 class BrowserShutdownProfileDumper;
45 class BrowserTestBase; 46 class BrowserTestBase;
46 class GLHelper; 47 class GLHelper;
47 class GpuChannelHost; 48 class GpuChannelHost;
48 class NestedMessagePumpAndroid; 49 class NestedMessagePumpAndroid;
49 class RenderWidgetResizeHelper; 50 class RenderWidgetResizeHelper;
50 class ScopedAllowWaitForAndroidLayoutTests; 51 class ScopedAllowWaitForAndroidLayoutTests;
51 class TextInputClientMac; 52 class TextInputClientMac;
52 } 53 }
53 namespace dbus { 54 namespace dbus {
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 // END ALLOWED USAGE. 207 // END ALLOWED USAGE.
207 // BEGIN USAGE THAT NEEDS TO BE FIXED. 208 // BEGIN USAGE THAT NEEDS TO BE FIXED.
208 friend class ::chromeos::AudioMixerAlsa; // http://crbug.com/125206 209 friend class ::chromeos::AudioMixerAlsa; // http://crbug.com/125206
209 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360 210 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360
210 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/ 125385 211 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/ 125385
211 friend class browser_sync::NonFrontendDataTypeController; // http://crbug.com /19757 212 friend class browser_sync::NonFrontendDataTypeController; // http://crbug.com /19757
212 friend class browser_sync::UIModelWorker; // http://crbug.com/19757 213 friend class browser_sync::UIModelWorker; // http://crbug.com/19757
213 friend class chrome_browser_net::Predictor; // http://crbug.com/78451 214 friend class chrome_browser_net::Predictor; // http://crbug.com/78451
214 friend class 215 friend class
215 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248 216 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248
217 friend class
218 content::BrowserGpuMemoryBufferManager; // http://crbug.com/420368
216 friend class content::GLHelper; // http://crbug.com/125415 219 friend class content::GLHelper; // http://crbug.com/125415
217 friend class content::GpuChannelHost; // http://crbug.com/125264 220 friend class content::GpuChannelHost; // http://crbug.com/125264
218 friend class content::TextInputClientMac; // http://crbug.com/121917 221 friend class content::TextInputClientMac; // http://crbug.com/121917
219 friend class dbus::Bus; // http://crbug.com/125222 222 friend class dbus::Bus; // http://crbug.com/125222
220 friend class disk_cache::BackendImpl; // http://crbug.com/74623 223 friend class disk_cache::BackendImpl; // http://crbug.com/74623
221 friend class disk_cache::InFlightIO; // http://crbug.com/74623 224 friend class disk_cache::InFlightIO; // http://crbug.com/74623
222 friend class media::AudioOutputController; // http://crbug.com/120973 225 friend class media::AudioOutputController; // http://crbug.com/120973
223 friend class net::FileStreamPosix; // http://crbug.com/115067 226 friend class net::FileStreamPosix; // http://crbug.com/115067
224 friend class net::FileStreamWin; // http://crbug.com/115067 227 friend class net::FileStreamWin; // http://crbug.com/115067
225 friend class net::internal::AddressTrackerLinux; // http://crbug.com/125097 228 friend class net::internal::AddressTrackerLinux; // http://crbug.com/125097
(...skipping 24 matching lines...) Expand all
250 253
251 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); 254 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait);
252 }; 255 };
253 256
254 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); 257 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions);
255 }; 258 };
256 259
257 } // namespace base 260 } // namespace base
258 261
259 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ 262 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_
OLDNEW
« no previous file with comments | « android_webview/browser/hardware_renderer.cc ('k') | cc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698