| Index: content/browser/android/browser_startup_controller.cc
|
| diff --git a/content/browser/android/browser_startup_controller.cc b/content/browser/android/browser_startup_controller.cc
|
| index 124b519046f1f9a2416f10fa95a2742a80fcd033..7b594524be431c5aec4d7ca951ec110adf1f55dc 100644
|
| --- a/content/browser/android/browser_startup_controller.cc
|
| +++ b/content/browser/android/browser_startup_controller.cc
|
| @@ -22,6 +22,12 @@ void BrowserStartupComplete(int result) {
|
| Java_BrowserStartupController_browserStartupComplete(env, result);
|
| }
|
|
|
| +bool ShouldStartGpuProcessOnBrowserStartup() {
|
| + JNIEnv* env = base::android::AttachCurrentThread();
|
| + return Java_BrowserStartupController_shouldStartGpuProcessOnBrowserStartup(
|
| + env);
|
| +}
|
| +
|
| bool RegisterBrowserStartupController(JNIEnv* env) {
|
| return RegisterNativesImpl(env);
|
| }
|
|
|