| Index: third_party/WebKit/Source/core/html/HTMLDialogElement.h
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLDialogElement.h b/third_party/WebKit/Source/core/html/HTMLDialogElement.h
|
| index 6b92e393ec2bce44761f9054986a996dcba7f2c1..e238cbbf0055934a67ffcdcde3825a71312564a8 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLDialogElement.h
|
| +++ b/third_party/WebKit/Source/core/html/HTMLDialogElement.h
|
| @@ -30,6 +30,7 @@
|
|
|
| namespace blink {
|
|
|
| +class DialogShowParams;
|
| class Document;
|
| class ExceptionState;
|
| class QualifiedName;
|
| @@ -42,8 +43,8 @@ class HTMLDialogElement final : public HTMLElement {
|
|
|
| void close(const String& returnValue, ExceptionState&);
|
| void closeDialog(const String& returnValue = String());
|
| - void show();
|
| - void showModal(ExceptionState&);
|
| + void show(const DialogShowParams&);
|
| + void showModal(const DialogShowParams&, ExceptionState&);
|
| void removedFrom(ContainerNode*) override;
|
|
|
| // NotCentered means do not center the dialog. Centered means the dialog has
|
|
|