1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:07:34 +00:00

LibCore: Remove leading C from filenames

This commit is contained in:
Andreas Kling 2020-02-06 15:04:03 +01:00
parent 7415e6ef9f
commit d17e23bd27
214 changed files with 361 additions and 361 deletions

View file

@ -26,8 +26,8 @@
#include <AK/BufferStream.h>
#include <LibAudio/AWavLoader.h>
#include <LibCore/CFile.h>
#include <LibCore/CIODeviceStreamReader.h>
#include <LibCore/File.h>
#include <LibCore/IODeviceStreamReader.h>
#include <limits>
namespace Audio {

View file

@ -30,7 +30,7 @@
#include <AK/String.h>
#include <AK/StringView.h>
#include <LibAudio/ABuffer.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
namespace AK {
class ByteBuffer;

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CArgsParser.h"
#include <AK/StringBuilder.h>
#include <LibCore/ArgsParser.h>
#include <getopt.h>
#include <limits.h>
#include <stdio.h>

View file

@ -25,9 +25,9 @@
*/
#include <AK/StringBuilder.h>
#include <LibCore/CConfigFile.h>
#include <LibCore/CFile.h>
#include <LibCore/CUserInfo.h>
#include <LibCore/ConfigFile.h>
#include <LibCore/File.h>
#include <LibCore/UserInfo.h>
#include <pwd.h>
#include <stdio.h>
#include <unistd.h>

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CDirIterator.h"
#include <LibCore/DirIterator.h>
#include <errno.h>
namespace Core {

View file

@ -26,7 +26,7 @@
#include <AK/Assertions.h>
#include <AK/Time.h>
#include <LibCore/CElapsedTimer.h>
#include <LibCore/ElapsedTimer.h>
#include <sys/time.h>
namespace Core {

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CEvent.h>
#include <LibCore/CObject.h>
#include <LibCore/Event.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -28,12 +28,12 @@
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <AK/Time.h>
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/CSyscallUtils.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/LocalSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
#include <LibCore/SyscallUtils.h>
#include <LibThread/Lock.h>
#include <errno.h>
#include <fcntl.h>

View file

@ -31,8 +31,8 @@
#include <AK/OwnPtr.h>
#include <AK/Vector.h>
#include <AK/WeakPtr.h>
#include <LibCore/CEvent.h>
#include <LibCore/CLocalServer.h>
#include <LibCore/Event.h>
#include <LibCore/LocalServer.h>
#include <LibThread/Lock.h>
#include <sys/select.h>
#include <sys/time.h>

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/String.h>
#include <LibCore/CIODevice.h>
#include <LibCore/IODevice.h>
namespace Core {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CGzip.h"
#include <AK/ByteBuffer.h>
#include <AK/Optional.h>
#include <LibCore/Gzip.h>
#include <LibCore/puff.h>
#include <limits.h>
#include <stddef.h>
@ -131,8 +131,8 @@ Optional<ByteBuffer> CGzip::decompress(const ByteBuffer& data)
if (puff_ret == 0) {
dbg() << "Gzip::decompress: Decompression success.";
break;
}
}
if (puff_ret == 1) {
// FIXME: Find a better way of decompressing without needing to try over and over again.
dbg() << "Gzip::decompress: Output buffer exhausted. Growing.";

View file

@ -24,10 +24,10 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CGzip.h>
#include <LibCore/CHttpJob.h>
#include <LibCore/CHttpResponse.h>
#include <LibCore/CTCPSocket.h>
#include <LibCore/Gzip.h>
#include <LibCore/HttpJob.h>
#include <LibCore/HttpResponse.h>
#include <LibCore/TCPSocket.h>
#include <stdio.h>
#include <unistd.h>

View file

@ -27,9 +27,9 @@
#pragma once
#include <AK/HashMap.h>
#include <LibCore/CHttpRequest.h>
#include <LibCore/CHttpResponse.h>
#include <LibCore/CNetworkJob.h>
#include <LibCore/HttpRequest.h>
#include <LibCore/HttpResponse.h>
#include <LibCore/NetworkJob.h>
namespace Core {

View file

@ -25,8 +25,8 @@
*/
#include <AK/StringBuilder.h>
#include <LibCore/CHttpJob.h>
#include <LibCore/CHttpRequest.h>
#include <LibCore/HttpJob.h>
#include <LibCore/HttpRequest.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CHttpResponse.h>
#include <LibCore/HttpResponse.h>
namespace Core {

View file

@ -28,7 +28,7 @@
#include <AK/HashMap.h>
#include <AK/String.h>
#include <LibCore/CNetworkResponse.h>
#include <LibCore/NetworkResponse.h>
namespace Core {

View file

@ -25,8 +25,8 @@
*/
#include <AK/PrintfImplementation.h>
#include <LibCore/CIODevice.h>
#include <LibCore/CSyscallUtils.h>
#include <LibCore/IODevice.h>
#include <LibCore/SyscallUtils.h>
#include <errno.h>
#include <stdio.h>
#include <sys/select.h>

View file

@ -28,7 +28,7 @@
#include <AK/ByteBuffer.h>
#include <AK/StringView.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/StdLibExtras.h>
#include <LibCore/CIODevice.h>
#include <LibCore/IODevice.h>
namespace Core {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CLocalServer.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h>
#include <LibCore/LocalServer.h>
#include <LibCore/LocalSocket.h>
#include <LibCore/Notifier.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/stat.h>

View file

@ -26,8 +26,8 @@
#pragma once
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CLocalSocket.h>
#include <LibCore/LocalSocket.h>
#include <errno.h>
#include <sys/socket.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Badge.h>
#include <LibCore/CSocket.h>
#include <LibCore/Socket.h>
namespace Core {

View file

@ -1,30 +1,30 @@
OBJS = \
CArgsParser.o \
CIODevice.o \
CFile.o \
CSocket.o \
CLocalSocket.o \
CLocalServer.o \
CTCPSocket.o \
CTCPServer.o \
CUdpSocket.o \
CUdpServer.o \
CElapsedTimer.o \
CNotifier.o \
CHttpRequest.o \
CHttpResponse.o \
CHttpJob.o \
CNetworkJob.o \
CNetworkResponse.o \
CObject.o \
CTimer.o \
CEventLoop.o \
CConfigFile.o \
CEvent.o \
CProcessStatisticsReader.o \
CDirIterator.o \
CUserInfo.o \
CGzip.o \
ArgsParser.o \
IODevice.o \
File.o \
Socket.o \
LocalSocket.o \
LocalServer.o \
TCPSocket.o \
TCPServer.o \
UdpSocket.o \
UdpServer.o \
ElapsedTimer.o \
Notifier.o \
HttpRequest.o \
HttpResponse.o \
HttpJob.o \
NetworkJob.o \
NetworkResponse.o \
Object.o \
Timer.o \
EventLoop.o \
ConfigFile.o \
Event.o \
ProcessStatisticsReader.o \
DirIterator.o \
UserInfo.o \
Gzip.o \
puff.o
LIBRARY = libcore.a

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CNetworkJob.h>
#include <LibCore/CNetworkResponse.h>
#include <LibCore/NetworkJob.h>
#include <LibCore/NetworkResponse.h>
#include <stdio.h>
//#define CNETWORKJOB_DEBUG

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CNetworkResponse.h>
#include <LibCore/NetworkResponse.h>
namespace Core {

View file

@ -24,9 +24,9 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CNotifier.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Notifier.h>
namespace Core {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -27,9 +27,9 @@
#include <AK/Assertions.h>
#include <AK/JsonObject.h>
#include <AK/kstdio.h>
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CObject.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Object.h>
#include <stdio.h>
namespace Core {

View file

@ -27,8 +27,8 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonValue.h>
#include <LibCore/CFile.h>
#include <LibCore/CProcessStatisticsReader.h>
#include <LibCore/File.h>
#include <LibCore/ProcessStatisticsReader.h>
#include <pwd.h>
#include <stdio.h>

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CNotifier.h>
#include <LibCore/CSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/Socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>

View file

@ -26,8 +26,8 @@
#pragma once
#include <LibCore/CIODevice.h>
#include <LibCore/CSocketAddress.h>
#include <LibCore/IODevice.h>
#include <LibCore/SocketAddress.h>
namespace Core {

View file

@ -26,9 +26,9 @@
#include <AK/IPv4Address.h>
#include <AK/Types.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CTCPServer.h>
#include <LibCore/CTCPSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/TCPServer.h>
#include <LibCore/TCPSocket.h>
#include <stdio.h>
#include <sys/socket.h>

View file

@ -27,8 +27,8 @@
#pragma once
#include <AK/IPv4Address.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CTCPSocket.h>
#include <LibCore/TCPSocket.h>
#include <errno.h>
#include <sys/socket.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Badge.h>
#include <LibCore/CSocket.h>
#include <LibCore/Socket.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
namespace Core {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -26,9 +26,9 @@
#include <AK/IPv4Address.h>
#include <AK/Types.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CUdpServer.h>
#include <LibCore/CUdpSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/UdpServer.h>
#include <LibCore/UdpSocket.h>
#include <stdio.h>
#include <sys/socket.h>

View file

@ -27,8 +27,8 @@
#pragma once
#include <AK/IPv4Address.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CUdpSocket.h>
#include <LibCore/UdpSocket.h>
#include <errno.h>
#include <sys/socket.h>

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Badge.h>
#include <LibCore/CSocket.h>
#include <LibCore/Socket.h>
namespace Core {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "CUserInfo.h"
#include <LibCore/UserInfo.h>
#include <pwd.h>
#include <stdlib.h>
#include <unistd.h>

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibGfx/TextAlignment.h>
#include <LibGUI/GWidget.h>

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CConfigFile.h>
#include <LibCore/ConfigFile.h>
#include <LibGUI/GDesktop.h>
#include <LibGUI/GWindowServerConnection.h>
#include <string.h>

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibCore/CEventLoop.h>
#include <LibCore/EventLoop.h>
#include <LibGUI/GWindow.h>
namespace GUI {

View file

@ -26,8 +26,8 @@
#pragma once
#include <LibCore/CEventLoop.h>
#include <LibCore/CObject.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Object.h>
namespace Gfx {
class Bitmap;

View file

@ -27,7 +27,7 @@
#pragma once
#include <Kernel/KeyCode.h>
#include <LibCore/CEvent.h>
#include <LibCore/Event.h>
#include <LibGfx/Point.h>
#include <LibGfx/Rect.h>
#include <LibGUI/GWindowType.h>

View file

@ -26,7 +26,7 @@
#include <AK/FileSystemPath.h>
#include <AK/Optional.h>
#include <LibCore/CUserInfo.h>
#include <LibCore/UserInfo.h>
#include <LibGUI/GDialog.h>
#include <LibGUI/GTableView.h>

View file

@ -26,7 +26,7 @@
#include <AK/FileSystemPath.h>
#include <AK/StringBuilder.h>
#include <LibCore/CDirIterator.h>
#include <LibCore/DirIterator.h>
#include <LibGfx/Bitmap.h>
#include <LibGUI/GFileSystemModel.h>
#include <LibGUI/GPainter.h>

View file

@ -28,7 +28,7 @@
#include <AK/HashMap.h>
#include <AK/NonnullOwnPtrVector.h>
#include <LibCore/CNotifier.h>
#include <LibCore/Notifier.h>
#include <LibGUI/GModel.h>
#include <sys/stat.h>
#include <time.h>

View file

@ -25,7 +25,7 @@
*/
#include <AK/QuickSort.h>
#include <LibCore/CDirIterator.h>
#include <LibCore/DirIterator.h>
#include <LibGfx/Font.h>
#include <LibGUI/GFontDatabase.h>
#include <dirent.h>

View file

@ -25,7 +25,7 @@
*/
#include <AK/JsonObject.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <LibGUI/GJsonArrayModel.h>
namespace GUI {

View file

@ -29,7 +29,7 @@
#include <AK/Function.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/NonnullRefPtr.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
#include <LibGUI/GMenuItem.h>
namespace Gfx {

View file

@ -27,7 +27,7 @@
#pragma once
#include <AK/Function.h>
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibGUI/GWidget.h>
namespace GUI {

View file

@ -25,7 +25,7 @@
*/
#include <AK/StringBuilder.h>
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibGUI/GTextDocument.h>
#include <LibGUI/GTextEditor.h>
#include <ctype.h>

View file

@ -31,7 +31,7 @@
#include <AK/NonnullOwnPtrVector.h>
#include <AK/NonnullRefPtr.h>
#include <AK/RefCounted.h>
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibGfx/Color.h>
#include <LibGfx/Font.h>
#include <LibGUI/GTextRange.h>

View file

@ -30,7 +30,7 @@
#include <AK/HashMap.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/NonnullRefPtrVector.h>
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibGfx/TextAlignment.h>
#include <LibGUI/GScrollableWidget.h>
#include <LibGUI/GTextDocument.h>

View file

@ -29,8 +29,8 @@
#include <AK/Badge.h>
#include <AK/HashMap.h>
#include <AK/String.h>
#include <LibCore/CElapsedTimer.h>
#include <LibCore/CObject.h>
#include <LibCore/ElapsedTimer.h>
#include <LibCore/Object.h>
#include <LibGfx/Color.h>
#include <LibGfx/Font.h>
#include <LibGfx/Orientation.h>

View file

@ -30,7 +30,7 @@
#include <AK/HashMap.h>
#include <AK/String.h>
#include <AK/WeakPtr.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Rect.h>
#include <LibGUI/GWindowType.h>

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CConfigFile.h>
#include <LibCore/ConfigFile.h>
#include <LibGfx/SystemTheme.h>
namespace Gfx {

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CDirIterator.h>
#include <LibCore/DirIterator.h>
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/FontCache.h>
#include <ctype.h>

View file

@ -26,7 +26,7 @@
#include <AK/JsonObject.h>
#include <AK/StringBuilder.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <ctype.h>
#include <stdio.h>

View file

@ -11,14 +11,14 @@ OBJS = \
../../../../AK/JsonValue.o \
../../../../AK/JsonParser.o \
../../../../AK/LogStream.o \
../../../../Libraries/LibCore/CIODevice.o \
../../../../Libraries/LibCore/CFile.o \
../../../../Libraries/LibCore/CObject.o \
../../../../Libraries/LibCore/CEvent.o \
../../../../Libraries/LibCore/CSocket.o \
../../../../Libraries/LibCore/CLocalSocket.o \
../../../../Libraries/LibCore/CNotifier.o \
../../../../Libraries/LibCore/CLocalServer.o \
../../../../Libraries/LibCore/CEventLoop.o
../../../../Libraries/LibCore/IODevice.o \
../../../../Libraries/LibCore/File.o \
../../../../Libraries/LibCore/Object.o \
../../../../Libraries/LibCore/Event.o \
../../../../Libraries/LibCore/Socket.o \
../../../../Libraries/LibCore/LocalSocket.o \
../../../../Libraries/LibCore/Notifier.o \
../../../../Libraries/LibCore/LocalServer.o \
../../../../Libraries/LibCore/EventLoop.o
include ../../../../Makefile.common

View file

@ -26,7 +26,7 @@
#include <AK/JsonObject.h>
#include <AK/StringBuilder.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <ctype.h>
#include <stdio.h>

View file

@ -11,14 +11,14 @@ OBJS = \
../../../../AK/JsonValue.o \
../../../../AK/JsonParser.o \
../../../../AK/LogStream.o \
../../../../Libraries/LibCore/CIODevice.o \
../../../../Libraries/LibCore/CFile.o \
../../../../Libraries/LibCore/CObject.o \
../../../../Libraries/LibCore/CEvent.o \
../../../../Libraries/LibCore/CSocket.o \
../../../../Libraries/LibCore/CLocalSocket.o \
../../../../Libraries/LibCore/CNotifier.o \
../../../../Libraries/LibCore/CLocalServer.o \
../../../../Libraries/LibCore/CEventLoop.o
../../../../Libraries/LibCore/IODevice.o \
../../../../Libraries/LibCore/File.o \
../../../../Libraries/LibCore/Object.o \
../../../../Libraries/LibCore/Event.o \
../../../../Libraries/LibCore/Socket.o \
../../../../Libraries/LibCore/LocalSocket.o \
../../../../Libraries/LibCore/Notifier.o \
../../../../Libraries/LibCore/LocalServer.o \
../../../../Libraries/LibCore/EventLoop.o
include ../../../../Makefile.common

View file

@ -26,7 +26,7 @@
#include <AK/FileSystemPath.h>
#include <AK/StringBuilder.h>
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibGUI/GApplication.h>
#include <LibHTML/CSS/StyleResolver.h>
#include <LibHTML/DOM/Document.h>

View file

@ -24,7 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibCore/CTimer.h>
#include <LibCore/Timer.h>
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/CSS/StyleValue.h>
#include <LibHTML/DOM/HTMLBlinkElement.h>

View file

@ -25,7 +25,7 @@
*/
#include <AK/URL.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/DOM/HTMLLinkElement.h>
#include <LibHTML/Parser/CSSParser.h>

View file

@ -25,7 +25,7 @@
*/
#include <AK/FileSystemPath.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <LibGUI/GApplication.h>
#include <LibGUI/GPainter.h>
#include <LibGUI/GScrollBar.h>

View file

@ -26,7 +26,7 @@
#include <AK/StringBuilder.h>
#include <AK/Utf8View.h>
#include <LibCore/CDirIterator.h>
#include <LibCore/DirIterator.h>
#include <LibGfx/Font.h>
#include <LibGUI/GPainter.h>
#include <LibHTML/DOM/Document.h>

View file

@ -25,7 +25,7 @@
*/
#include <AK/SharedBuffer.h>
#include <LibCore/CFile.h>
#include <LibCore/File.h>
#include <LibHTML/ResourceLoader.h>
#include <LibProtocol/Client.h>
#include <LibProtocol/Download.h>

View file

@ -28,7 +28,7 @@
#include <AK/Function.h>
#include <AK/URL.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
namespace Protocol {
class Client;

View file

@ -26,12 +26,12 @@
#pragma once
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CIODevice.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CObject.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/IODevice.h>
#include <LibCore/LocalSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
#include <LibIPC/Endpoint.h>
#include <LibIPC/Message.h>
#include <errno.h>

View file

@ -27,11 +27,11 @@
#pragma once
#include <AK/NonnullOwnPtrVector.h>
#include <LibCore/CEvent.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CLocalSocket.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CSyscallUtils.h>
#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/LocalSocket.h>
#include <LibCore/Notifier.h>
#include <LibCore/SyscallUtils.h>
#include <LibIPC/Message.h>
#include <stdio.h>
#include <stdlib.h>

View file

@ -30,8 +30,8 @@
#include <AK/NonnullRefPtr.h>
#include <AK/Optional.h>
#include <AK/Queue.h>
#include <LibCore/CEventLoop.h>
#include <LibCore/CObject.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Object.h>
#include <LibThread/Lock.h>
#include <LibThread/Thread.h>

View file

@ -28,7 +28,7 @@
#include <AK/Function.h>
#include <AK/String.h>
#include <LibCore/CObject.h>
#include <LibCore/Object.h>
#include <pthread.h>
namespace LibThread {

View file

@ -27,9 +27,9 @@
#pragma once
#include <AK/String.h>
#include <LibCore/CConfigFile.h>
#include <LibCore/CNotifier.h>
#include <LibCore/CTimer.h>
#include <LibCore/ConfigFile.h>
#include <LibCore/Notifier.h>
#include <LibCore/Timer.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/Rect.h>
#include <LibGUI/GFrame.h>