diff options
author | John Abd-El-Malek <jam@chromium.org> | 2015-04-02 10:29:35 -0700 |
---|---|---|
committer | John Abd-El-Malek <jam@chromium.org> | 2015-04-02 17:31:11 +0000 |
commit | 537a670451020f4764d511cbdf8e30ec91ef897c (patch) | |
tree | d2868da2b0d33dc7ed8c8e709ae4a7f5bd5aefd8 /mojo/shell/android/main.h | |
parent | 83653dd1da59dfa7ddd9e48d4cd507a11cefd968 (diff) | |
download | chromium_src-537a670451020f4764d511cbdf8e30ec91ef897c.zip chromium_src-537a670451020f4764d511cbdf8e30ec91ef897c.tar.gz chromium_src-537a670451020f4764d511cbdf8e30ec91ef897c.tar.bz2 |
Get mojo_shell building inside chromium checkout.
This brings in mojo_shell and the necessary services to make html_viewer work.
This is copied from the Mojo repo at 272fbba5887d66fc0111e2ab44c1edf67b7f23e0.
R=scottmg@chromium.org
Review URL: https://codereview.chromium.org/1049993002
Cr-Commit-Position: refs/heads/master@{#323528}
Diffstat (limited to 'mojo/shell/android/main.h')
-rw-r--r-- | mojo/shell/android/main.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mojo/shell/android/main.h b/mojo/shell/android/main.h new file mode 100644 index 0000000..43ea16a --- /dev/null +++ b/mojo/shell/android/main.h @@ -0,0 +1,18 @@ +// Copyright 2013 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 SHELL_ANDROID_MAIN_H_ +#define SHELL_ANDROID_MAIN_H_ + +#include <jni.h> + +namespace mojo { +namespace shell { + +bool RegisterShellMain(JNIEnv* env); + +} // namespace shell +} // namespace mojo + +#endif // SHELL_ANDROID_MAIN_H_ |