Update to Chromium version 76.0.3809.0 (#665002)

OSR tests will be fixed by a follow-up merge of Viz support (see issue #2575).
This commit is contained in:
Petra Öhlin
2019-07-16 13:59:21 -04:00
committed by Marshall Greenblatt
parent 5892ffc382
commit cc0db5f166
124 changed files with 1312 additions and 1416 deletions

View File

@ -10,7 +10,8 @@
namespace content {
class RenderFrame;
}
class RenderView;
} // namespace content
class CefFrameImpl;
@ -23,10 +24,13 @@ class CefRenderFrameObserver : public content::RenderFrameObserver {
void OnInterfaceRequestForFrame(
const std::string& interface_name,
mojo::ScopedMessagePipeHandle* interface_pipe) override;
void DidCommitProvisionalLoad(bool is_same_document_navigation,
ui::PageTransition transition) override;
void DidFailProvisionalLoad(const blink::WebURLError& error) override;
void DidFinishLoad() override;
void FrameDetached() override;
void FrameFocused() override;
void FocusedNodeChanged(const blink::WebNode& node) override;
void FocusedElementChanged(const blink::WebElement& element) override;
void DraggableRegionsChanged() override;
void DidCreateScriptContext(v8::Handle<v8::Context> context,
int world_id) override;
@ -40,6 +44,9 @@ class CefRenderFrameObserver : public content::RenderFrameObserver {
void AttachFrame(CefFrameImpl* frame);
private:
void OnLoadStart();
void OnLoadError(const blink::WebURLError& error);
service_manager::BinderRegistry registry_;
CefFrameImpl* frame_ = nullptr;