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

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

Issue 11085054: Aura: Allow browser UI thread waiting for compositor commits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/CCCompletionEvent.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 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 11 matching lines...) Expand all
22 class MetricsService; 22 class MetricsService;
23 class NativeBackendKWallet; 23 class NativeBackendKWallet;
24 class ScopedAllowWaitForLegacyWebViewApi; 24 class ScopedAllowWaitForLegacyWebViewApi;
25 class TestingAutomationProvider; 25 class TestingAutomationProvider;
26 class TextInputClientMac; 26 class TextInputClientMac;
27 27
28 namespace browser_sync { 28 namespace browser_sync {
29 class NonFrontendDataTypeController; 29 class NonFrontendDataTypeController;
30 class UIModelWorker; 30 class UIModelWorker;
31 } 31 }
32 namespace cc {
33 class CCCompletionEvent;
34 }
32 namespace chromeos { 35 namespace chromeos {
33 class AudioMixerAlsa; 36 class AudioMixerAlsa;
34 class BlockingMethodCaller; 37 class BlockingMethodCaller;
35 namespace system { 38 namespace system {
36 class StatisticsProviderImpl; 39 class StatisticsProviderImpl;
37 } 40 }
38 } 41 }
39 namespace chrome_browser_net { 42 namespace chrome_browser_net {
40 class Predictor; 43 class Predictor;
41 } 44 }
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 // END ALLOWED USAGE. 174 // END ALLOWED USAGE.
172 // BEGIN USAGE THAT NEEDS TO BE FIXED. 175 // BEGIN USAGE THAT NEEDS TO BE FIXED.
173 friend class ::chromeos::AudioMixerAlsa; // http://crbug.com/125206 176 friend class ::chromeos::AudioMixerAlsa; // http://crbug.com/125206
174 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360 177 friend class ::chromeos::BlockingMethodCaller; // http://crbug.com/125360
175 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/ 125385 178 friend class ::chromeos::system::StatisticsProviderImpl; // http://crbug.com/ 125385
176 friend class browser_sync::NonFrontendDataTypeController; // http://crbug.com /19757 179 friend class browser_sync::NonFrontendDataTypeController; // http://crbug.com /19757
177 friend class browser_sync::UIModelWorker; // http://crbug.com/19757 180 friend class browser_sync::UIModelWorker; // http://crbug.com/19757
178 friend class chrome_browser_net::Predictor; // http://crbug.com/78451 181 friend class chrome_browser_net::Predictor; // http://crbug.com/78451
179 friend class 182 friend class
180 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248 183 content::BrowserGpuChannelHostFactory; // http://crbug.com/125248
184 friend class cc::CCCompletionEvent; // http://crbug.com/FIXME
tfarina 2012/10/11 00:13:22 did you really mean crbug.com/FIXME?
181 friend class content::GLHelper; // http://crbug.com/125415 185 friend class content::GLHelper; // http://crbug.com/125415
182 friend class dbus::Bus; // http://crbug.com/125222 186 friend class dbus::Bus; // http://crbug.com/125222
183 friend class disk_cache::BackendImpl; // http://crbug.com/74623 187 friend class disk_cache::BackendImpl; // http://crbug.com/74623
184 friend class disk_cache::InFlightIO; // http://crbug.com/74623 188 friend class disk_cache::InFlightIO; // http://crbug.com/74623
185 friend class media::AudioOutputController; // http://crbug.com/120973 189 friend class media::AudioOutputController; // http://crbug.com/120973
186 friend class net::FileStreamPosix; // http://crbug.com/115067 190 friend class net::FileStreamPosix; // http://crbug.com/115067
187 friend class net::FileStreamWin; // http://crbug.com/115067 191 friend class net::FileStreamWin; // http://crbug.com/115067
188 friend class net::NetworkManagerApi; // http://crbug.com/125097 192 friend class net::NetworkManagerApi; // http://crbug.com/125097
189 friend class ::AcceleratedPresenter; // http://crbug.com/125391 193 friend class ::AcceleratedPresenter; // http://crbug.com/125391
190 friend class ::BrowserProcessImpl; // http://crbug.com/125207 194 friend class ::BrowserProcessImpl; // http://crbug.com/125207
(...skipping 24 matching lines...) Expand all
215 219
216 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait); 220 DISALLOW_COPY_AND_ASSIGN(ScopedAllowWait);
217 }; 221 };
218 222
219 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions); 223 DISALLOW_IMPLICIT_CONSTRUCTORS(ThreadRestrictions);
220 }; 224 };
221 225
222 } // namespace base 226 } // namespace base
223 227
224 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_ 228 #endif // BASE_THREADING_THREAD_RESTRICTIONS_H_
OLDNEW
« no previous file with comments | « no previous file | cc/CCCompletionEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698