| Index: third_party/WebKit/Source/core/dom/PendingScript.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/PendingScript.cpp b/third_party/WebKit/Source/core/dom/PendingScript.cpp
|
| index ba3e8a5bbcfd28a4ae5cca10beb104b6a014111c..a0605d77562e4e47986ff8ecfde38269920154e3 100644
|
| --- a/third_party/WebKit/Source/core/dom/PendingScript.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/PendingScript.cpp
|
| @@ -34,13 +34,6 @@
|
|
|
| namespace blink {
|
|
|
| -PendingScript::PendingScript()
|
| - : m_watchingForLoad(false)
|
| - , m_startingPosition(TextPosition::belowRangePosition())
|
| - , m_integrityFailure(false)
|
| -{
|
| -}
|
| -
|
| PendingScript::PendingScript(Element* element, ScriptResource* resource)
|
| : m_watchingForLoad(false)
|
| , m_element(element)
|
| @@ -49,17 +42,6 @@ PendingScript::PendingScript(Element* element, ScriptResource* resource)
|
| setScriptResource(resource);
|
| }
|
|
|
| -PendingScript::PendingScript(const PendingScript& other)
|
| - : ResourceOwner(other)
|
| - , m_watchingForLoad(other.m_watchingForLoad)
|
| - , m_element(other.m_element)
|
| - , m_startingPosition(other.m_startingPosition)
|
| - , m_integrityFailure(other.m_integrityFailure)
|
| - , m_streamer(other.m_streamer)
|
| -{
|
| - setScriptResource(other.resource());
|
| -}
|
| -
|
| PendingScript::~PendingScript()
|
| {
|
| }
|
|
|