| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/message_loop_proxy.h" | 13 #include "base/message_loop/message_loop_proxy.h" |
| 14 #include "base/task_runner_util.h" | 14 #include "base/task_runner_util.h" |
| 15 #include "base/time.h" | 15 #include "base/time.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 | 17 |
| 18 #if defined(UNIT_TEST) | 18 #if defined(UNIT_TEST) |
| 19 #include "base/logging.h" | 19 #include "base/logging.h" |
| 20 #endif // UNIT_TEST | 20 #endif // UNIT_TEST |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class MessageLoop; | 23 class MessageLoop; |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 private: | 271 private: |
| 272 friend class BrowserThreadImpl; | 272 friend class BrowserThreadImpl; |
| 273 | 273 |
| 274 BrowserThread() {} | 274 BrowserThread() {} |
| 275 DISALLOW_COPY_AND_ASSIGN(BrowserThread); | 275 DISALLOW_COPY_AND_ASSIGN(BrowserThread); |
| 276 }; | 276 }; |
| 277 | 277 |
| 278 } // namespace content | 278 } // namespace content |
| 279 | 279 |
| 280 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ | 280 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_THREAD_H_ |
| OLD | NEW |