123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // Copyright (c) 2022 Slack Technologies, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #ifndef SHELL_BROWSER_ELECTRON_API_IPC_HANDLER_IMPL_H_
- #define SHELL_BROWSER_ELECTRON_API_IPC_HANDLER_IMPL_H_
- #include <string>
- #include <vector>
- #include "base/macros.h"
- #include "base/memory/weak_ptr.h"
- #include "content/public/browser/web_contents_observer.h"
- #include "electron/shell/common/api/api.mojom.h"
- #include "mojo/public/cpp/bindings/associated_receiver.h"
- #include "shell/browser/api/electron_api_web_contents.h"
- namespace content {
- class RenderFrameHost;
- }
- namespace electron {
- class ElectronApiIPCHandlerImpl : public mojom::ElectronApiIPC,
- public content::WebContentsObserver {
- public:
- explicit ElectronApiIPCHandlerImpl(
- content::RenderFrameHost* render_frame_host,
- mojo::PendingAssociatedReceiver<mojom::ElectronApiIPC> receiver);
- static void Create(
- content::RenderFrameHost* frame_host,
- mojo::PendingAssociatedReceiver<mojom::ElectronApiIPC> receiver);
- // mojom::ElectronApiIPC:
- void Message(bool internal,
- const std::string& channel,
- blink::CloneableMessage arguments) override;
- void Invoke(bool internal,
- const std::string& channel,
- blink::CloneableMessage arguments,
- InvokeCallback callback) override;
- void ReceivePostMessage(const std::string& channel,
- blink::TransferableMessage message) override;
- void MessageSync(bool internal,
- const std::string& channel,
- blink::CloneableMessage arguments,
- MessageSyncCallback callback) override;
- void MessageTo(int32_t web_contents_id,
- const std::string& channel,
- blink::CloneableMessage arguments) override;
- void MessageHost(const std::string& channel,
- blink::CloneableMessage arguments) override;
- base::WeakPtr<ElectronApiIPCHandlerImpl> GetWeakPtr() {
- return weak_factory_.GetWeakPtr();
- }
- private:
- ~ElectronApiIPCHandlerImpl() override;
- // content::WebContentsObserver:
- void WebContentsDestroyed() override;
- void OnConnectionError();
- content::RenderFrameHost* GetRenderFrameHost();
- const int render_process_id_;
- const int render_frame_id_;
- mojo::AssociatedReceiver<mojom::ElectronApiIPC> receiver_{this};
- base::WeakPtrFactory<ElectronApiIPCHandlerImpl> weak_factory_{this};
- DISALLOW_COPY_AND_ASSIGN(ElectronApiIPCHandlerImpl);
- };
- } // namespace electron
- #endif // SHELL_BROWSER_ELECTRON_API_IPC_HANDLER_IMPL_H_
|