| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementException.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementException.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementException.cpp
|
| similarity index 93%
|
| rename from third_party/WebKit/Source/core/dom/custom/CustomElementException.cpp
|
| rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementException.cpp
|
| index b4735db3887821cc4aee555e111b1c7eea0ee8a8..d93a9c75aa54346d508d23c321d8305bd5ddd071 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementException.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementException.cpp
|
| @@ -28,19 +28,19 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#include "core/dom/custom/CustomElementException.h"
|
| +#include "core/dom/custom/V0CustomElementException.h"
|
|
|
| #include "bindings/core/v8/ExceptionState.h"
|
| #include "core/dom/ExceptionCode.h"
|
|
|
| namespace blink {
|
|
|
| -String CustomElementException::preamble(const AtomicString& type)
|
| +String V0CustomElementException::preamble(const AtomicString& type)
|
| {
|
| return "Registration failed for type '" + type + "'. ";
|
| }
|
|
|
| -void CustomElementException::throwException(Reason reason, const AtomicString& type, ExceptionState& exceptionState)
|
| +void V0CustomElementException::throwException(Reason reason, const AtomicString& type, ExceptionState& exceptionState)
|
| {
|
| switch (reason) {
|
| case CannotRegisterFromExtension:
|
|
|