| Index: content/app/android/app_jni_registrar.cc
|
| diff --git a/content/app/android/app_jni_registrar.cc b/content/app/android/app_jni_registrar.cc
|
| index f8557b1b1b1750a4e49100f5952c160c1287f151..e42014c4e3e32b108d5c76efac8f687225d0ca21 100644
|
| --- a/content/app/android/app_jni_registrar.cc
|
| +++ b/content/app/android/app_jni_registrar.cc
|
| @@ -9,12 +9,15 @@
|
| #include "base/macros.h"
|
| #include "content/app/android/child_process_service_impl.h"
|
| #include "content/app/android/content_main.h"
|
| +#include "content/app/android/dialog_surface_activity_mapper.h"
|
|
|
| namespace {
|
|
|
| base::android::RegistrationMethod kContentRegisteredMethods[] = {
|
| - { "ContentMain", content::RegisterContentMain },
|
| - { "ChildProcessServiceImpl", content::RegisterChildProcessServiceImpl },
|
| + {"DialogSurfaceActivityMapper",
|
| + content::RegisterDialogSurfaceActivityMapper},
|
| + {"ContentMain", content::RegisterContentMain},
|
| + {"ChildProcessServiceImpl", content::RegisterChildProcessServiceImpl},
|
| };
|
|
|
| } // namespace
|
|
|