| Index: chrome/renderer/chrome_render_thread_observer.cc
|
| diff --git a/chrome/renderer/chrome_render_thread_observer.cc b/chrome/renderer/chrome_render_thread_observer.cc
|
| index ebfe32922014601f2eccd7fcbbbba5167ab55c3e..17e51ea8db16a95d19a6097f5a2d8f5753eb557f 100644
|
| --- a/chrome/renderer/chrome_render_thread_observer.cc
|
| +++ b/chrome/renderer/chrome_render_thread_observer.cc
|
| @@ -30,7 +30,6 @@
|
| #include "build/build_config.h"
|
| #include "chrome/common/child_process_logging.h"
|
| #include "chrome/common/chrome_paths.h"
|
| -#include "chrome/common/field_trial_recorder.mojom.h"
|
| #include "chrome/common/media/media_resource_provider.h"
|
| #include "chrome/common/net/net_resource_provider.h"
|
| #include "chrome/common/render_messages.h"
|
| @@ -43,6 +42,7 @@
|
| #include "content/public/child/resource_dispatcher_delegate.h"
|
| #include "content/public/common/associated_interface_registry.h"
|
| #include "content/public/common/content_switches.h"
|
| +#include "content/public/common/field_trial_recorder.mojom.h"
|
| #include "content/public/renderer/render_thread.h"
|
| #include "content/public/renderer/render_view.h"
|
| #include "content/public/renderer/render_view_visitor.h"
|
| @@ -298,7 +298,7 @@ void ChromeRenderThreadObserver::OnRenderProcessShutdown() {
|
| void ChromeRenderThreadObserver::OnFieldTrialGroupFinalized(
|
| const std::string& trial_name,
|
| const std::string& group_name) {
|
| - chrome::mojom::FieldTrialRecorderPtr field_trial_recorder;
|
| + content::mojom::FieldTrialRecorderPtr field_trial_recorder;
|
| content::RenderThread::Get()->GetRemoteInterfaces()->GetInterface(
|
| &field_trial_recorder);
|
| field_trial_recorder->FieldTrialActivated(trial_name);
|
|
|