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

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: Rebase on master 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
« no previous file with comments | « Source/bindings/tests/results/V8TestObj.cpp ('k') | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0cab85556067572a4144cd792efee5e4b93cfd4a..5702982c74c5b3741b413adf1815fed875f54da1 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);
@@ -62,7 +62,7 @@ private:
template<>
class WrapperTypeTraits<TestObj > {
public:
- static WrapperTypeInfo* info() { return &V8TestObj::info; }
+ static WrapperTypeInfo* info() { return &V8TestObject::info; }
};
@@ -74,9 +74,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)
@@ -143,4 +143,4 @@ inline v8::Handle<v8::Value> toV8(PassRefPtr< TestObj > impl, v8::Handle<v8::Obj
}
-#endif // V8TestObj_h
+#endif // V8TestObject_h
« no previous file with comments | « Source/bindings/tests/results/V8TestObj.cpp ('k') | Source/bindings/tests/results/V8TestObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698