summaryrefslogtreecommitdiffstats
path: root/dom/html/nsBrowserElement.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:27 +0000
commit40a355a42d4a9444dc753c04c6608dade2f06a23 (patch)
tree871fc667d2de662f171103ce5ec067014ef85e61 /dom/html/nsBrowserElement.h
parentAdding upstream version 124.0.1. (diff)
downloadfirefox-adbda400be353e676059e335c3c0aaf99e719475.tar.xz
firefox-adbda400be353e676059e335c3c0aaf99e719475.zip
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/html/nsBrowserElement.h')
-rw-r--r--dom/html/nsBrowserElement.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/dom/html/nsBrowserElement.h b/dom/html/nsBrowserElement.h
deleted file mode 100644
index c81529de33..0000000000
--- a/dom/html/nsBrowserElement.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* vim: set ts=8 sts=2 et sw=2 tw=80: */
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this file,
- * You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-#ifndef nsBrowserElement_h
-#define nsBrowserElement_h
-
-#include "mozilla/dom/BindingDeclarations.h"
-
-#include "nsCOMPtr.h"
-#include "nsIBrowserElementAPI.h"
-
-class nsFrameLoader;
-
-namespace mozilla {
-
-namespace dom {
-class Promise;
-} // namespace dom
-
-class ErrorResult;
-
-/**
- * A helper class for browser-element frames
- */
-class nsBrowserElement {
- public:
- nsBrowserElement() = default;
- virtual ~nsBrowserElement() = default;
-
- void SendMouseEvent(const nsAString& aType, uint32_t aX, uint32_t aY,
- uint32_t aButton, uint32_t aClickCount,
- uint32_t aModifiers, ErrorResult& aRv);
- void GoBack(ErrorResult& aRv);
- void GoForward(ErrorResult& aRv);
- void Reload(bool aHardReload, ErrorResult& aRv);
- void Stop(ErrorResult& aRv);
-
- already_AddRefed<dom::Promise> GetCanGoBack(ErrorResult& aRv);
- already_AddRefed<dom::Promise> GetCanGoForward(ErrorResult& aRv);
-
- protected:
- virtual already_AddRefed<nsFrameLoader> GetFrameLoader() = 0;
-
- void InitBrowserElementAPI();
- void DestroyBrowserElementFrameScripts();
- nsCOMPtr<nsIBrowserElementAPI> mBrowserElementAPI;
-
- private:
- bool IsBrowserElementOrThrow(ErrorResult& aRv);
-};
-
-} // namespace mozilla
-
-#endif // nsBrowserElement_h