| Index: content/renderer/renderer_blink_platform_impl.cc
|
| diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc
|
| index b4a106b81eb109f15943d98bf2ea7e62289167c4..19f1a54cccb69aa298c5e4546efd1e0a4016faff 100644
|
| --- a/content/renderer/renderer_blink_platform_impl.cc
|
| +++ b/content/renderer/renderer_blink_platform_impl.cc
|
| @@ -1027,6 +1027,18 @@ blink::WebString RendererBlinkPlatformImpl::convertIDNToUnicode(
|
|
|
| //------------------------------------------------------------------------------
|
|
|
| +void RendererBlinkPlatformImpl::recordRappor(const char* metric,
|
| + const blink::WebString& sample) {
|
| + GetContentClient()->renderer()->RecordRappor(metric, sample.utf8());
|
| +}
|
| +
|
| +void RendererBlinkPlatformImpl::recordRapporURL(const char* metric,
|
| + const blink::WebURL& url) {
|
| + GetContentClient()->renderer()->RecordRapporURL(metric, url);
|
| +}
|
| +
|
| +//------------------------------------------------------------------------------
|
| +
|
| // static
|
| void RendererBlinkPlatformImpl::SetMockDeviceLightDataForTesting(double data) {
|
| g_test_device_light_data = data;
|
|
|