Index: content/renderer/render_thread_impl.cc |
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc |
index be5a892f47e3806c8047a8460f3b1044492d0292..0f930a480fed1f8eceda8d8a5993131812e25926 100644 |
--- a/content/renderer/render_thread_impl.cc |
+++ b/content/renderer/render_thread_impl.cc |
@@ -1149,6 +1149,12 @@ void RenderThreadImpl::RecordComputedAction(const std::string& action) { |
Send(new ViewHostMsg_UserMetricsRecordAction(action)); |
} |
+void RenderThreadImpl::RecordRappor( |
+ const std::string& metric, |
+ const std::string& sample) { |
+ Send(new ViewHostMsg_UserMetricsRecordRappor(metric, sample)); |
+} |
+ |
scoped_ptr<base::SharedMemory> |
RenderThreadImpl::HostAllocateSharedMemoryBuffer(size_t size) { |
return ChildThreadImpl::AllocateSharedMemory(size, thread_safe_sender()); |