| Index: components/printing/renderer/print_web_view_helper.cc
|
| diff --git a/components/printing/renderer/print_web_view_helper.cc b/components/printing/renderer/print_web_view_helper.cc
|
| index dce40c4843d018a692da2fdb2ac5d5168506dea0..aedc8e0c97f456e61460c10952dcbe226c01da5c 100644
|
| --- a/components/printing/renderer/print_web_view_helper.cc
|
| +++ b/components/printing/renderer/print_web_view_helper.cc
|
| @@ -616,6 +616,7 @@ class PrepareFrameAndViewForPrint : public blink::WebViewClient,
|
| blink::WebLocalFrame* parent,
|
| blink::WebTreeScopeType scope,
|
| const blink::WebString& name,
|
| + const blink::WebString& uniqueName,
|
| blink::WebSandboxFlags sandboxFlags,
|
| const blink::WebFrameOwnerProperties& frameOwnerProperties) override;
|
| void frameDetached(blink::WebFrame* frame, DetachType type) override;
|
| @@ -759,9 +760,10 @@ void PrepareFrameAndViewForPrint::didStopLoading() {
|
| blink::WebFrame* PrepareFrameAndViewForPrint::createChildFrame(
|
| blink::WebLocalFrame* parent,
|
| blink::WebTreeScopeType scope,
|
| - const blink::WebString& name,
|
| - blink::WebSandboxFlags sandboxFlags,
|
| - const blink::WebFrameOwnerProperties& frameOwnerProperties) {
|
| + const blink::WebString& /* name */,
|
| + const blink::WebString& /* uniqueName */,
|
| + blink::WebSandboxFlags /* sandboxFlags */,
|
| + const blink::WebFrameOwnerProperties& /* frameOwnerProperties */) {
|
| blink::WebFrame* frame = blink::WebLocalFrame::create(scope, this);
|
| parent->appendChild(frame);
|
| return frame;
|
|
|