Index: sky/engine/core/dom/shadow/ShadowRoot.cpp |
diff --git a/sky/engine/core/dom/shadow/ShadowRoot.cpp b/sky/engine/core/dom/shadow/ShadowRoot.cpp |
index af0ea8fda935993172fbe1cb1e2d51606e365fff..eb9f0f77820c44f4a3971b12c6a6606076d7b8b5 100644 |
--- a/sky/engine/core/dom/shadow/ShadowRoot.cpp |
+++ b/sky/engine/core/dom/shadow/ShadowRoot.cpp |
@@ -27,7 +27,7 @@ |
#include "sky/engine/config.h" |
#include "sky/engine/core/dom/shadow/ShadowRoot.h" |
-#include "sky/engine/bindings/core/v8/ExceptionState.h" |
+#include "sky/engine/bindings2/exception_state.h" |
#include "sky/engine/core/css/resolver/StyleResolver.h" |
#include "sky/engine/core/dom/Document.h" |
#include "sky/engine/core/dom/ElementTraversal.h" |
@@ -82,7 +82,7 @@ void ShadowRoot::dispose() |
PassRefPtr<Node> ShadowRoot::cloneNode(bool, ExceptionState& exceptionState) |
{ |
- exceptionState.throwDOMException(DataCloneError, "ShadowRoot nodes are not clonable."); |
+ exceptionState.ThrowDOMException(DataCloneError, "ShadowRoot nodes are not clonable."); |
return nullptr; |
} |