OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
Ted C
2012/05/09 00:26:41
2012
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_BROWSER_ANDROID_COMMAND_LINE_H_ | |
6 #define CONTENT_BROWSER_ANDROID_COMMAND_LINE_H_ | |
7 #pragma once | |
8 | |
9 #include <jni.h> | |
10 | |
11 // Appends all strings in the given array as flags to the Chrome command line. | |
12 void InitNativeCommandLineFromJavaArray(JNIEnv* env, | |
13 jobjectArray init_command_line); | |
14 | |
15 // JNI registration boilerplate. | |
16 bool RegisterCommandLine(JNIEnv* env); | |
17 | |
18 #endif // CONTENT_BROWSER_ANDROID_COMMAND_LINE_H_ | |
OLD | NEW |