| Index: Source/core/inspector/DOMPatchSupport.h
|
| diff --git a/Source/core/inspector/DOMPatchSupport.h b/Source/core/inspector/DOMPatchSupport.h
|
| index f843c837de5eb9bb7396cbfb1141a5fb994bd6bf..4462fb58f5d221f7a55dc64670fb73a547a10b72 100644
|
| --- a/Source/core/inspector/DOMPatchSupport.h
|
| +++ b/Source/core/inspector/DOMPatchSupport.h
|
| @@ -48,9 +48,9 @@ class Node;
|
| class DOMPatchSupport {
|
| WTF_MAKE_NONCOPYABLE(DOMPatchSupport);
|
| public:
|
| - static void patchDocument(Document*, const String& markup);
|
| + static void patchDocument(Document&, const String& markup);
|
|
|
| - DOMPatchSupport(DOMEditor*, Document*);
|
| + DOMPatchSupport(DOMEditor*, Document&);
|
| virtual ~DOMPatchSupport();
|
|
|
| void patchDocument(const String& markup);
|
| @@ -73,7 +73,7 @@ private:
|
| #endif
|
|
|
| DOMEditor* m_domEditor;
|
| - Document* m_document;
|
| + Document& m_document;
|
|
|
| UnusedNodesMap m_unusedNodesMap;
|
| };
|
|
|