| 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_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/id_map.h" | 14 #include "base/id_map.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 17 #include "cc/blink/web_compositor_support_impl.h" | 17 #include "cc/blink/web_compositor_support_impl.h" |
| 18 #include "content/child/blink_platform_impl.h" | 18 #include "content/child/blink_platform_impl.h" |
| 19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
| 20 #include "content/common/url_loader_factory.mojom.h" |
| 20 #include "content/renderer/origin_trials/web_trial_token_validator_impl.h" | 21 #include "content/renderer/origin_trials/web_trial_token_validator_impl.h" |
| 21 #include "content/renderer/top_level_blame_context.h" | 22 #include "content/renderer/top_level_blame_context.h" |
| 22 #include "content/renderer/webpublicsuffixlist_impl.h" | 23 #include "content/renderer/webpublicsuffixlist_impl.h" |
| 23 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" | 24 #include "third_party/WebKit/public/platform/modules/indexeddb/WebIDBFactory.h" |
| 24 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" | 25 #include "third_party/WebKit/public/platform/modules/screen_orientation/WebScree
nOrientationType.h" |
| 25 | 26 |
| 26 namespace cc { | 27 namespace cc { |
| 27 class ContextProvider; | 28 class ContextProvider; |
| 28 } | 29 } |
| 29 | 30 |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 | 303 |
| 303 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED | 304 scheduler::RendererScheduler* renderer_scheduler_; // NOT OWNED |
| 304 TopLevelBlameContext top_level_blame_context_; | 305 TopLevelBlameContext top_level_blame_context_; |
| 305 | 306 |
| 306 WebTrialTokenValidatorImpl trial_token_validator_; | 307 WebTrialTokenValidatorImpl trial_token_validator_; |
| 307 | 308 |
| 308 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; | 309 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; |
| 309 | 310 |
| 310 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; | 311 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; |
| 311 | 312 |
| 313 mojom::URLLoaderFactoryPtr url_loader_factory_; |
| 314 |
| 312 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); | 315 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); |
| 313 }; | 316 }; |
| 314 | 317 |
| 315 } // namespace content | 318 } // namespace content |
| 316 | 319 |
| 317 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ | 320 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ |
| OLD | NEW |