| Index: content/renderer/renderer_main.cc
|
| diff --git a/content/renderer/renderer_main.cc b/content/renderer/renderer_main.cc
|
| index 09e0d301bb45f099b88d64be667de6036607d909..09388d4c9ecc6cde23c3078acce4db912f1f4d14 100644
|
| --- a/content/renderer/renderer_main.cc
|
| +++ b/content/renderer/renderer_main.cc
|
| @@ -32,6 +32,7 @@
|
| #include "ui/base/ui_base_switches.h"
|
|
|
| #if defined(OS_ANDROID)
|
| +#include "base/android/library_loader/library_loader_hooks.h"
|
| #include "third_party/skia/include/core/SkGraphics.h"
|
| #endif // OS_ANDROID
|
|
|
| @@ -162,6 +163,11 @@ int RendererMain(const MainFunctionParams& parameters) {
|
| // Initialize histogram statistics gathering system.
|
| base::StatisticsRecorder::Initialize();
|
|
|
| +#if defined(OS_ANDROID)
|
| + // If we have a pending chromium android linker histogram, record it.
|
| + base::android::RecordChromiumAndroidLinkerRendererHistogram();
|
| +#endif
|
| +
|
| // Initialize statistical testing infrastructure. We set the entropy provider
|
| // to NULL to disallow the renderer process from creating its own one-time
|
| // randomized trials; they should be created in the browser process.
|
|
|