| 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_UTILITY_UTILITY_THREAD_IMPL_H_ | 5 #ifndef CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_ |
| 6 #define CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_ | 6 #define CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "content/child/child_thread_impl.h" | 15 #include "content/child/child_thread_impl.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 #include "content/public/utility/utility_thread.h" | 17 #include "content/public/utility/utility_thread.h" |
| 18 #include "mojo/public/cpp/bindings/binding_set.h" | 18 #include "mojo/public/cpp/bindings/binding_set.h" |
| 19 #include "services/service_manager/public/interfaces/service_factory.mojom.h" | 19 #include "services/service_manager/public/interfaces/service_factory.mojom.h" |
| 20 | 20 |
| 21 namespace base { | |
| 22 class FilePath; | |
| 23 } | |
| 24 | |
| 25 namespace content { | 21 namespace content { |
| 26 class BlinkPlatformImpl; | 22 class BlinkPlatformImpl; |
| 27 class UtilityBlinkPlatformImpl; | 23 class UtilityBlinkPlatformImpl; |
| 28 class UtilityServiceFactory; | 24 class UtilityServiceFactory; |
| 29 | 25 |
| 30 #if defined(COMPILER_MSVC) | 26 #if defined(COMPILER_MSVC) |
| 31 // See explanation for other RenderViewHostImpl which is the same issue. | 27 // See explanation for other RenderViewHostImpl which is the same issue. |
| 32 #pragma warning(push) | 28 #pragma warning(push) |
| 33 #pragma warning(disable: 4250) | 29 #pragma warning(disable: 4250) |
| 34 #endif | 30 #endif |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 DISALLOW_COPY_AND_ASSIGN(UtilityThreadImpl); | 71 DISALLOW_COPY_AND_ASSIGN(UtilityThreadImpl); |
| 76 }; | 72 }; |
| 77 | 73 |
| 78 #if defined(COMPILER_MSVC) | 74 #if defined(COMPILER_MSVC) |
| 79 #pragma warning(pop) | 75 #pragma warning(pop) |
| 80 #endif | 76 #endif |
| 81 | 77 |
| 82 } // namespace content | 78 } // namespace content |
| 83 | 79 |
| 84 #endif // CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_ | 80 #endif // CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_ |
| OLD | NEW |