mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 104.0.5112.0 (#1012729)
- Mac: 10.13 is now the minimum required macOS version
This commit is contained in:
@@ -92,6 +92,7 @@ class CefFrameImpl
|
||||
// Forwarded from CefRenderFrameObserver.
|
||||
void OnAttached();
|
||||
void OnWasShown();
|
||||
void OnDidCommitProvisionalLoad();
|
||||
void OnDidFinishLoad();
|
||||
void OnDraggableRegionsChanged();
|
||||
void OnContextCreated(v8::Local<v8::Context> context);
|
||||
@@ -129,6 +130,8 @@ class CefFrameImpl
|
||||
void SendToBrowserFrame(const std::string& function_name,
|
||||
BrowserFrameAction action);
|
||||
|
||||
void MaybeInitializeScriptContext();
|
||||
|
||||
// cef::mojom::RenderFrame methods:
|
||||
void FrameAttachedAck() override;
|
||||
void SendMessage(const std::string& name, base::Value arguments) override;
|
||||
@@ -151,6 +154,9 @@ class CefFrameImpl
|
||||
blink::WebLocalFrame* frame_;
|
||||
const int64 frame_id_;
|
||||
|
||||
bool did_commit_provisional_load_ = false;
|
||||
bool did_initialize_script_context_ = false;
|
||||
|
||||
bool context_created_ = false;
|
||||
std::queue<std::pair<std::string, LocalFrameAction>> queued_context_actions_;
|
||||
|
||||
|
Reference in New Issue
Block a user