53f6cbccbf
* refactor: use mojo for electron internal IPC * add sender_id, drop MessageSync * remove usages of AtomFrameMsg_Message * iwyu * first draft of renderer->browser direction * refactor to reuse a single ipc interface * implement TakeHeapSnapshot through mojo * the rest of the owl^WtakeHeapSnapshot mojofication * remove no-op overrides in AtomRendererClient * delete renderer-side ElectronApiServiceImpl when its pipe is destroyed * looks like we don't need to overlay the renderer manifest after all * don't try to send 2 replies to a sync rpc * undo changes to manifests.cc * unify sandboxed + unsandboxed ipc events * lint * register ElectronBrowser mojo service on devtools WebContents * fix takeHeapSnapshopt failure paths * {electron_api => atom}::mojom * add send_to_all to ElectronRenderer::Message * keep interface alive until callback is called * review comments * use GetContext from RendererClientBase * robustify a test that uses window.open * MessageSync posts a task to put sync messages in the same queue as async ones * add v8::MicrotasksScope and node::CallbackScope * iwyu * use weakptr to api::WebContents instead of Unretained * make MessageSync an asynchronous message & use non-associated interface * iwyu + comments * remove unused WeakPtrFactory * inline OnRendererMessage[Sync] * cleanups & comments * use helper methods instead of inline lambdas * remove unneeded async in test * add mojo to manifests deps * add gn check for //electron/manifests and mojo * don't register renderer side service until preload has been run * update gn check targets list * move interface registration back to RenderFrameCreated
81 lines
2.2 KiB
C++
81 lines
2.2 KiB
C++
// Copyright (c) 2014 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/browser/api/event.h"
|
|
|
|
#include <utility>
|
|
|
|
#include "atom/common/api/api_messages.h"
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
|
#include "content/public/browser/render_frame_host.h"
|
|
#include "content/public/browser/web_contents.h"
|
|
#include "native_mate/object_template_builder.h"
|
|
|
|
namespace mate {
|
|
|
|
Event::Event(v8::Isolate* isolate) {
|
|
Init(isolate);
|
|
}
|
|
|
|
Event::~Event() {}
|
|
|
|
void Event::SetSenderAndMessage(content::RenderFrameHost* sender,
|
|
base::Optional<MessageSyncCallback> callback) {
|
|
DCHECK(!sender_);
|
|
DCHECK(!callback_);
|
|
sender_ = sender;
|
|
callback_ = std::move(callback);
|
|
|
|
Observe(content::WebContents::FromRenderFrameHost(sender));
|
|
}
|
|
|
|
void Event::RenderFrameDeleted(content::RenderFrameHost* rfh) {
|
|
if (sender_ != rfh)
|
|
return;
|
|
sender_ = nullptr;
|
|
callback_.reset();
|
|
}
|
|
|
|
void Event::RenderFrameHostChanged(content::RenderFrameHost* old_rfh,
|
|
content::RenderFrameHost* new_rfh) {
|
|
if (sender_ && sender_ == old_rfh)
|
|
sender_ = new_rfh;
|
|
}
|
|
|
|
void Event::FrameDeleted(content::RenderFrameHost* rfh) {
|
|
if (sender_ != rfh)
|
|
return;
|
|
sender_ = nullptr;
|
|
callback_.reset();
|
|
}
|
|
|
|
void Event::PreventDefault(v8::Isolate* isolate) {
|
|
GetWrapper()->Set(StringToV8(isolate, "defaultPrevented"), v8::True(isolate));
|
|
}
|
|
|
|
bool Event::SendReply(const base::ListValue& result) {
|
|
if (!callback_ || sender_ == nullptr)
|
|
return false;
|
|
|
|
std::move(*callback_).Run(result.Clone());
|
|
callback_.reset();
|
|
return true;
|
|
}
|
|
|
|
// static
|
|
Handle<Event> Event::Create(v8::Isolate* isolate) {
|
|
return mate::CreateHandle(isolate, new Event(isolate));
|
|
}
|
|
|
|
// static
|
|
void Event::BuildPrototype(v8::Isolate* isolate,
|
|
v8::Local<v8::FunctionTemplate> prototype) {
|
|
prototype->SetClassName(mate::StringToV8(isolate, "Event"));
|
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
|
.SetMethod("preventDefault", &Event::PreventDefault)
|
|
.SetMethod("sendReply", &Event::SendReply);
|
|
}
|
|
|
|
} // namespace mate
|