| Index: content/common/android/process_main.h
|
| diff --git a/content/common/android/process_main.h b/content/common/android/process_main.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..196c1acde74aaf6def2e416f9898c2cd85940013
|
| --- /dev/null
|
| +++ b/content/common/android/process_main.h
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_COMMON_ANDROID_PROCESS_MAIN_H_
|
| +#define CONTENT_COMMON_ANDROID_PROCESS_MAIN_H_
|
| +#pragma once
|
| +
|
| +#include <jni.h>
|
| +
|
| +namespace content {
|
| +class ContentMainDelegate;
|
| +}
|
| +
|
| +extern content::ContentMainDelegate* g_content_main_delegate;
|
| +
|
| +bool InitProcess(JNIEnv* env, jobject context);
|
| +
|
| +#endif // CONTENT_COMMON_ANDROID_PROCESS_MAIN_H_
|
|
|