| 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 CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ | 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/message_loop_proxy.h" | 11 #include "base/message_loop_proxy.h" |
| 12 #include "base/task.h" | |
| 13 #include "base/tracked_objects.h" | 12 #include "base/tracked_objects.h" |
| 14 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 15 #include "content/public/browser/browser_thread_delegate.h" | 14 #include "content/public/browser/browser_thread_delegate.h" |
| 16 | 15 |
| 17 #if defined(UNIT_TEST) | 16 #if defined(UNIT_TEST) |
| 18 #include "base/logging.h" | 17 #include "base/logging.h" |
| 19 #endif // UNIT_TEST | 18 #endif // UNIT_TEST |
| 20 | 19 |
| 21 class MessageLoop; | 20 class MessageLoop; |
| 22 | 21 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 private: | 226 private: |
| 228 friend class BrowserThreadImpl; | 227 friend class BrowserThreadImpl; |
| 229 | 228 |
| 230 BrowserThread() {} | 229 BrowserThread() {} |
| 231 DISALLOW_COPY_AND_ASSIGN(BrowserThread); | 230 DISALLOW_COPY_AND_ASSIGN(BrowserThread); |
| 232 }; | 231 }; |
| 233 | 232 |
| 234 } // namespace content | 233 } // namespace content |
| 235 | 234 |
| 236 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ | 235 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ |
| OLD | NEW |