| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index 6ac39d3a5c3f6c87567ba660f75f360767efae1c..246c197cb39f940ee64831e7fae55a7085154939 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -779,12 +779,12 @@ public:
|
|
|
| DocumentMarkerController& markers() const { return *m_markers; }
|
|
|
| - bool execCommand(const String& command, bool showUI, const String& value);
|
| - bool queryCommandEnabled(const String& command);
|
| - bool queryCommandIndeterm(const String& command);
|
| - bool queryCommandState(const String& command);
|
| - bool queryCommandSupported(const String& command);
|
| - String queryCommandValue(const String& command);
|
| + bool execCommand(const String& command, bool showUI, const String& value, ExceptionState&);
|
| + bool queryCommandEnabled(const String& command, ExceptionState&);
|
| + bool queryCommandIndeterm(const String& command, ExceptionState&);
|
| + bool queryCommandState(const String& command, ExceptionState&);
|
| + bool queryCommandSupported(const String& command, ExceptionState&);
|
| + String queryCommandValue(const String& command, ExceptionState&);
|
|
|
| KURL openSearchDescriptionURL();
|
|
|
|
|