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

Unified Diff: Source/bindings/tests/results/V8TestObject.h

Issue 14882009: Remove DOM prefix from several IDL interfaces (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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: Source/bindings/tests/results/V8TestObject.h
diff --git a/Source/bindings/tests/results/V8TestObj.h b/Source/bindings/tests/results/V8TestObject.h
similarity index 95%
rename from Source/bindings/tests/results/V8TestObj.h
rename to Source/bindings/tests/results/V8TestObject.h
index bbbd90f54232b05fd1217bbfc631c7b0e3ec7af7..258bbb8e062713bdfd1d02724c62c7a6c29106e5 100644
--- a/Source/bindings/tests/results/V8TestObj.h
+++ b/Source/bindings/tests/results/V8TestObject.h
@@ -18,8 +18,8 @@
Boston, MA 02111-1307, USA.
*/
-#ifndef V8TestObj_h
-#define V8TestObj_h
+#ifndef V8TestObject_h
+#define V8TestObject_h
#include "bindings/bindings/tests/idls/TestObj.h"
#include "bindings/v8/V8Binding.h"
@@ -31,7 +31,7 @@
namespace WebCore {
-class V8TestObj {
+class V8TestObject {
public:
static const bool hasDependentLifetime = false;
static bool HasInstance(v8::Handle<v8::Value>, v8::Isolate*, WrapperWorldType);
@@ -61,7 +61,7 @@ private:
template<>
class WrapperTypeTraits<TestObj > {
public:
- static WrapperTypeInfo* info() { return &V8TestObj::info; }
+ static WrapperTypeInfo* info() { return &V8TestObject::info; }
};
@@ -73,9 +73,9 @@ inline v8::Handle<v8::Object> wrap(TestObj* impl, v8::Handle<v8::Object> creatio
const WrapperTypeInfo* actualInfo = ScriptWrappable::getTypeInfoFromObject(impl);
// Might be a XXXConstructor::info instead of an XXX::info. These will both have
// the same object de-ref functions, though, so use that as the basis of the check.
- RELEASE_ASSERT(actualInfo->derefObjectFunction == V8TestObj::info.derefObjectFunction);
+ RELEASE_ASSERT(actualInfo->derefObjectFunction == V8TestObject::info.derefObjectFunction);
}
- return V8TestObj::createWrapper(impl, creationContext, isolate);
+ return V8TestObject::createWrapper(impl, creationContext, isolate);
}
inline v8::Handle<v8::Value> toV8(TestObj* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
@@ -142,4 +142,4 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr< TestObj > impl, v8::Handle<v8::Obj
}
-#endif // V8TestObj_h
+#endif // V8TestObject_h

Powered by Google App Engine
This is Rietveld 408576698