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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h

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/bindings/core/v8/V0CustomElementBinding.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.h b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
similarity index 82%
rename from third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.h
rename to third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
index d40985d8c7efe634dc85ab6cdc152cb34dfb2c76..2f5ef1cb48c91d81d3eb069b4eeec40f20b7e30e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/CustomElementBinding.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.h
@@ -28,8 +28,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CustomElementBinding_h
-#define CustomElementBinding_h
+#ifndef V0CustomElementBinding_h
+#define V0CustomElementBinding_h
#include "bindings/core/v8/ScopedPersistent.h"
#include "wtf/Allocator.h"
@@ -38,17 +38,17 @@
namespace blink {
-class CustomElementBinding {
- USING_FAST_MALLOC(CustomElementBinding);
+class V0CustomElementBinding {
+ USING_FAST_MALLOC(V0CustomElementBinding);
public:
- static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
- ~CustomElementBinding();
+ static PassOwnPtr<V0CustomElementBinding> create(v8::Isolate*, v8::Local<v8::Object> prototype);
+ ~V0CustomElementBinding();
private:
- CustomElementBinding(v8::Isolate*, v8::Local<v8::Object> prototype);
+ V0CustomElementBinding(v8::Isolate*, v8::Local<v8::Object> prototype);
ScopedPersistent<v8::Object> m_prototype;
};
} // namespace blink
-#endif // CustomElementBinding_h
+#endif // V0CustomElementBinding_h

Powered by Google App Engine
This is Rietveld 408576698