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 "chrome/renderer/chrome_render_thread_observer.h" | 5 #include "chrome/renderer/chrome_render_thread_observer.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <limits> | 9 #include <limits> |
10 #include <memory> | 10 #include <memory> |
(...skipping 10 matching lines...) Expand all Loading... | |
21 #include "base/memory/weak_ptr.h" | 21 #include "base/memory/weak_ptr.h" |
22 #include "base/metrics/field_trial.h" | 22 #include "base/metrics/field_trial.h" |
23 #include "base/metrics/histogram.h" | 23 #include "base/metrics/histogram.h" |
24 #include "base/metrics/statistics_recorder.h" | 24 #include "base/metrics/statistics_recorder.h" |
25 #include "base/path_service.h" | 25 #include "base/path_service.h" |
26 #include "base/single_thread_task_runner.h" | 26 #include "base/single_thread_task_runner.h" |
27 #include "base/strings/utf_string_conversions.h" | 27 #include "base/strings/utf_string_conversions.h" |
28 #include "base/threading/platform_thread.h" | 28 #include "base/threading/platform_thread.h" |
29 #include "base/threading/thread_task_runner_handle.h" | 29 #include "base/threading/thread_task_runner_handle.h" |
30 #include "build/build_config.h" | 30 #include "build/build_config.h" |
31 #include "chrome/common/cache_stats_recorder.mojom.h" | |
31 #include "chrome/common/child_process_logging.h" | 32 #include "chrome/common/child_process_logging.h" |
32 #include "chrome/common/chrome_paths.h" | 33 #include "chrome/common/chrome_paths.h" |
33 #include "chrome/common/field_trial_recorder.mojom.h" | 34 #include "chrome/common/field_trial_recorder.mojom.h" |
34 #include "chrome/common/media/media_resource_provider.h" | 35 #include "chrome/common/media/media_resource_provider.h" |
35 #include "chrome/common/net/net_resource_provider.h" | 36 #include "chrome/common/net/net_resource_provider.h" |
36 #include "chrome/common/render_messages.h" | 37 #include "chrome/common/render_messages.h" |
37 #include "chrome/common/resource_usage_reporter.mojom.h" | 38 #include "chrome/common/resource_usage_reporter.mojom.h" |
38 #include "chrome/common/resource_usage_reporter_type_converters.h" | 39 #include "chrome/common/resource_usage_reporter_type_converters.h" |
39 #include "chrome/common/url_constants.h" | 40 #include "chrome/common/url_constants.h" |
40 #include "chrome/renderer/content_settings_observer.h" | 41 #include "chrome/renderer/content_settings_observer.h" |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
110 std::move(current_peer), RenderThread::Get(), mime_type, url); | 111 std::move(current_peer), RenderThread::Get(), mime_type, url); |
111 #else | 112 #else |
112 return current_peer; | 113 return current_peer; |
113 #endif | 114 #endif |
114 } | 115 } |
115 | 116 |
116 private: | 117 private: |
117 void InformHostOfCacheStats() { | 118 void InformHostOfCacheStats() { |
118 WebCache::UsageStats stats; | 119 WebCache::UsageStats stats; |
119 WebCache::getUsageStats(&stats); | 120 WebCache::getUsageStats(&stats); |
120 RenderThread::Get()->Send(new ChromeViewHostMsg_UpdatedCacheStats( | 121 chrome::mojom::CacheStatsRecorderPtr cache_stats_recorder; |
Sam McNally
2017/01/24 04:06:15
This one feels like the connection should be reuse
nigeltao1
2017/02/02 05:20:59
Done.
| |
121 static_cast<uint64_t>(stats.capacity), | 122 RenderThread::Get()->GetRemoteInterfaces()->GetInterface( |
122 static_cast<uint64_t>(stats.size))); | 123 &cache_stats_recorder); |
124 cache_stats_recorder->RecordCacheStats(stats.capacity, stats.size); | |
123 } | 125 } |
124 | 126 |
125 base::WeakPtrFactory<RendererResourceDelegate> weak_factory_; | 127 base::WeakPtrFactory<RendererResourceDelegate> weak_factory_; |
126 | 128 |
127 DISALLOW_COPY_AND_ASSIGN(RendererResourceDelegate); | 129 DISALLOW_COPY_AND_ASSIGN(RendererResourceDelegate); |
128 }; | 130 }; |
129 | 131 |
130 static const int kWaitForWorkersStatsTimeoutMS = 20; | 132 static const int kWaitForWorkersStatsTimeoutMS = 20; |
131 | 133 |
132 class ResourceUsageReporterImpl : public chrome::mojom::ResourceUsageReporter { | 134 class ResourceUsageReporterImpl : public chrome::mojom::ResourceUsageReporter { |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
332 void ChromeRenderThreadObserver::OnSetFieldTrialGroup( | 334 void ChromeRenderThreadObserver::OnSetFieldTrialGroup( |
333 const std::string& trial_name, | 335 const std::string& trial_name, |
334 const std::string& group_name) { | 336 const std::string& group_name) { |
335 field_trial_syncer_.OnSetFieldTrialGroup(trial_name, group_name); | 337 field_trial_syncer_.OnSetFieldTrialGroup(trial_name, group_name); |
336 } | 338 } |
337 | 339 |
338 const RendererContentSettingRules* | 340 const RendererContentSettingRules* |
339 ChromeRenderThreadObserver::content_setting_rules() const { | 341 ChromeRenderThreadObserver::content_setting_rules() const { |
340 return &content_setting_rules_; | 342 return &content_setting_rules_; |
341 } | 343 } |
OLD | NEW |