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 #include "content/renderer/renderer_blink_platform_impl.h" | 5 #include "content/renderer/renderer_blink_platform_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
11 #include "base/lazy_instance.h" | 11 #include "base/lazy_instance.h" |
12 #include "base/location.h" | 12 #include "base/location.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
15 #include "base/memory/shared_memory.h" | 15 #include "base/memory/shared_memory.h" |
16 #include "base/metrics/histogram.h" | 16 #include "base/metrics/histogram.h" |
17 #include "base/numerics/safe_conversions.h" | 17 #include "base/numerics/safe_conversions.h" |
18 #include "base/single_thread_task_runner.h" | 18 #include "base/single_thread_task_runner.h" |
19 #include "base/strings/string_number_conversions.h" | 19 #include "base/strings/string_number_conversions.h" |
20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
21 #include "base/thread_task_runner_handle.h" | 21 #include "base/thread_task_runner_handle.h" |
22 #include "build/build_config.h" | 22 #include "build/build_config.h" |
23 #include "cc/blink/context_provider_web_context.h" | |
24 #include "components/scheduler/child/web_scheduler_impl.h" | 23 #include "components/scheduler/child/web_scheduler_impl.h" |
25 #include "components/scheduler/child/web_task_runner_impl.h" | 24 #include "components/scheduler/child/web_task_runner_impl.h" |
26 #include "components/scheduler/renderer/renderer_scheduler.h" | 25 #include "components/scheduler/renderer/renderer_scheduler.h" |
27 #include "components/scheduler/renderer/webthread_impl_for_renderer_scheduler.h" | 26 #include "components/scheduler/renderer/webthread_impl_for_renderer_scheduler.h" |
28 #include "components/url_formatter/url_formatter.h" | 27 #include "components/url_formatter/url_formatter.h" |
29 #include "content/child/database_util.h" | 28 #include "content/child/database_util.h" |
30 #include "content/child/file_info_util.h" | 29 #include "content/child/file_info_util.h" |
31 #include "content/child/fileapi/webfilesystem_impl.h" | 30 #include "content/child/fileapi/webfilesystem_impl.h" |
32 #include "content/child/indexed_db/webidbfactory_impl.h" | 31 #include "content/child/indexed_db/webidbfactory_impl.h" |
33 #include "content/child/quota_dispatcher.h" | 32 #include "content/child/quota_dispatcher.h" |
(...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1305 } | 1304 } |
1306 | 1305 |
1307 //------------------------------------------------------------------------------ | 1306 //------------------------------------------------------------------------------ |
1308 | 1307 |
1309 blink::WebTrialTokenValidator* | 1308 blink::WebTrialTokenValidator* |
1310 RendererBlinkPlatformImpl::trialTokenValidator() { | 1309 RendererBlinkPlatformImpl::trialTokenValidator() { |
1311 return &trial_token_validator_; | 1310 return &trial_token_validator_; |
1312 } | 1311 } |
1313 | 1312 |
1314 } // namespace content | 1313 } // namespace content |
OLD | NEW |