Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7261)

Unified Diff: content/app/android/app_jni_registrar.cc

Issue 2049843004: Upstream: Renderers are running in WebAPKs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Always check command line flags in getNum(Class)ofService(). Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 2698054ab99c122606d162ec084097cdda4a7d4f..f8557b1b1b1750a4e49100f5952c160c1287f151 100644
--- a/content/app/android/app_jni_registrar.cc
+++ b/content/app/android/app_jni_registrar.cc
@@ -7,14 +7,14 @@
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
#include "base/macros.h"
-#include "content/app/android/child_process_service.h"
+#include "content/app/android/child_process_service_impl.h"
#include "content/app/android/content_main.h"
namespace {
base::android::RegistrationMethod kContentRegisteredMethods[] = {
{ "ContentMain", content::RegisterContentMain },
- { "ChildProcessService", content::RegisterChildProcessService },
+ { "ChildProcessServiceImpl", content::RegisterChildProcessServiceImpl },
};
} // namespace

Powered by Google App Engine
This is Rietveld 408576698