mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
2ff37d7e13
This prevents memory leaks detected by both Valgrind and ASAN/LSAN. Valgrind is still suspicious of the leaked JS::VM from Web::Bindings::main_thread_vm() but there's other issues with leak checking all the GC'd objects. Co-Authored-By: Diego Iastrubni <diegoiast@gmail.com>
42 lines
1 KiB
C++
42 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "BrowserWindow.h"
|
|
#include "Settings.h"
|
|
#include "SimpleWebView.h"
|
|
#include <LibCore/ArgsParser.h>
|
|
#include <LibCore/Timer.h>
|
|
#include <LibMain/Main.h>
|
|
#include <QApplication>
|
|
#include <QWidget>
|
|
|
|
extern void initialize_web_engine();
|
|
Browser::Settings* s_settings;
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
QApplication app(arguments.argc, arguments.argv);
|
|
|
|
initialize_web_engine();
|
|
|
|
String url;
|
|
Core::ArgsParser args_parser;
|
|
args_parser.set_general_help("The Ladybird web browser :^)");
|
|
args_parser.add_positional_argument(url, "URL to open", "url", Core::ArgsParser::Required::No);
|
|
args_parser.parse(arguments);
|
|
|
|
BrowserWindow window;
|
|
s_settings = new Browser::Settings(&window);
|
|
window.setWindowTitle("Ladybird");
|
|
window.resize(800, 600);
|
|
window.show();
|
|
|
|
if (!url.is_empty()) {
|
|
window.view().load(url);
|
|
}
|
|
|
|
return app.exec();
|
|
}
|