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

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

Issue 10444121: Added android_browser_process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 7 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/content_jni_registrar.cc
diff --git a/content/app/android/content_jni_registrar.cc b/content/app/android/content_jni_registrar.cc
index e9c8e00445c87c6b3606914a1d5adf64f5a6d170..a9b5ab66ded3366031ccdd18ff4d78f79f515d70 100644
--- a/content/app/android/content_jni_registrar.cc
+++ b/content/app/android/content_jni_registrar.cc
@@ -6,6 +6,8 @@
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
+#include "content/app/android/browser_process_main.h"
+#include "content/app/android/content_main.h"
#include "content/browser/android/command_line.h"
#include "content/browser/android/download_controller.h"
#include "content/browser/android/trace_event_binding.h"
@@ -14,7 +16,9 @@ namespace content {
namespace android {
base::android::RegistrationMethod kContentRegisteredMethods[] = {
+ { "BrowserProcessMain", content::RegisterBrowserProcessMain },
{ "CommandLine", RegisterCommandLine },
+ { "ContentMain", content::RegisterContentMain },
{ "DownloadController", DownloadController::RegisterDownloadController },
{ "TraceEvent", RegisterTraceEvent },
};

Powered by Google App Engine
This is Rietveld 408576698