mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
Ladybird/Android: Move JNI functions into their own files
This should be easier to work on, and keeps the layers of the native code nice and clean cut.
This commit is contained in:
parent
274fd88242
commit
315ad2d391
Notes:
sideshowbarker
2024-07-17 21:16:31 +09:00
Author: https://github.com/ADKaster
Commit: 315ad2d391
Pull-request: https://github.com/SerenityOS/serenity/pull/21100
8 changed files with 256 additions and 210 deletions
11
Ladybird/Android/src/main/cpp/WebContentService.h
Normal file
11
Ladybird/Android/src/main/cpp/WebContentService.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Error.h>
|
||||
|
||||
ErrorOr<int> web_content_main(int ipc_socket, int fd_passing_socket);
|
||||
Loading…
Add table
Add a link
Reference in a new issue