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

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

Issue 10546079: Added sandboxed process service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Init Created 8 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/content_jni_registrar.cc
diff --git a/content/app/android/content_jni_registrar.cc b/content/app/android/content_jni_registrar.cc
index 70aee5bbb0e2316300abcf4e61ffab10ca094fe4..fac9b8714120458c6f3575618226ac4ea228c22e 100644
--- a/content/app/android/content_jni_registrar.cc
+++ b/content/app/android/content_jni_registrar.cc
@@ -7,10 +7,12 @@
#include "base/android/jni_android.h"
#include "base/android/jni_registrar.h"
#include "content/app/android/content_main.h"
+#include "content/app/android/sandboxed_process_service.h"
#include "content/browser/android/android_browser_process.h"
#include "content/browser/android/command_line.h"
#include "content/browser/android/device_info.h"
#include "content/browser/android/download_controller.h"
+#include "content/common/android/surface_callback.h"
jam 2012/06/11 20:13:17 nit: order
michaelbai 2012/06/11 20:30:16 Done.
#include "content/browser/android/trace_event_binding.h"
namespace content {
@@ -22,6 +24,8 @@ base::android::RegistrationMethod kContentRegisteredMethods[] = {
{ "ContentMain", content::RegisterContentMain },
{ "DeviceInfo", RegisterDeviceInfo },
{ "DownloadController", DownloadController::RegisterDownloadController },
+ { "SandboxedProcessService", content::RegisterSandboxedProcessService },
+ { "SurfaceCallback", content::RegisterSurfaceCallback },
{ "TraceEvent", RegisterTraceEvent },
};

Powered by Google App Engine
This is Rietveld 408576698