OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/browser/android/browser_startup_controller.h" | 5 #include "content/browser/android/browser_startup_controller.h" |
6 | 6 |
7 #include "base/android/jni_android.h" | 7 #include "base/android/jni_android.h" |
| 8 #include "base/android/jni_string.h" |
| 9 #include "content/browser/android/content_startup_flags.h" |
| 10 |
8 #include "jni/BrowserStartupController_jni.h" | 11 #include "jni/BrowserStartupController_jni.h" |
9 | 12 |
10 namespace content { | 13 namespace content { |
11 | 14 |
12 bool BrowserMayStartAsynchronously() { | 15 bool BrowserMayStartAsynchronously() { |
13 JNIEnv* env = base::android::AttachCurrentThread(); | 16 JNIEnv* env = base::android::AttachCurrentThread(); |
14 return Java_BrowserStartupController_browserMayStartAsynchonously(env); | 17 return Java_BrowserStartupController_browserMayStartAsynchonously(env); |
15 } | 18 } |
16 | 19 |
17 void BrowserStartupComplete(int result) { | 20 void BrowserStartupComplete(int result) { |
18 JNIEnv* env = base::android::AttachCurrentThread(); | 21 JNIEnv* env = base::android::AttachCurrentThread(); |
19 Java_BrowserStartupController_browserStartupComplete(env, result); | 22 Java_BrowserStartupController_browserStartupComplete(env, result); |
20 } | 23 } |
21 | 24 |
22 bool RegisterBrowserStartupController(JNIEnv* env) { | 25 bool RegisterBrowserStartupController(JNIEnv* env) { |
23 return RegisterNativesImpl(env); | 26 return RegisterNativesImpl(env); |
24 } | 27 } |
| 28 |
| 29 static void SetCommandLineFlags(JNIEnv* env, |
| 30 jclass clazz, |
| 31 jint max_render_process_count, |
| 32 jstring plugin_descriptor) { |
| 33 std::string plugin_str = |
| 34 (plugin_descriptor == NULL |
| 35 ? std::string() |
| 36 : base::android::ConvertJavaStringToUTF8(env, plugin_descriptor)); |
| 37 SetContentCommandLineFlags(max_render_process_count, plugin_str); |
| 38 } |
| 39 |
| 40 static jboolean IsOfficialBuild(JNIEnv* env, jclass clazz) { |
| 41 #if defined(OFFICIAL_BUILD) |
| 42 return true; |
| 43 #else |
| 44 return false; |
| 45 #endif |
| 46 } |
| 47 |
| 48 static jboolean IsPluginEnabled(JNIEnv* env, jclass clazz) { |
| 49 #if defined(ENABLE_PLUGINS) |
| 50 return true; |
| 51 #else |
| 52 return false; |
| 53 #endif |
| 54 } |
| 55 |
25 } // namespace content | 56 } // namespace content |
OLD | NEW |