Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementException.cpp

Issue 1914923002: Rename all existing custom element classes as V0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CustomElementV0 -> V0CustomElement Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698