summaryrefslogtreecommitdiffstats
path: root/webkit/glue/devtools/bound_object.cc
diff options
context:
space:
mode:
authorjaphet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-29 16:26:01 +0000
committerjaphet@chromium.org <japhet@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-29 16:26:01 +0000
commitf58705418e184e0c42ebb5a264ff25785950cc0a (patch)
tree70a48dd90aeca08579b846e40f2fd4ad02debf92 /webkit/glue/devtools/bound_object.cc
parent25d238062198d6e683cf33ca1033dd4bf7e9c5e3 (diff)
downloadchromium_src-f58705418e184e0c42ebb5a264ff25785950cc0a.zip
chromium_src-f58705418e184e0c42ebb5a264ff25785950cc0a.tar.gz
chromium_src-f58705418e184e0c42ebb5a264ff25785950cc0a.tar.bz2
Reverting 19489,19488.
Review URL: http://codereview.chromium.org/150024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19490 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/devtools/bound_object.cc')
-rw-r--r--webkit/glue/devtools/bound_object.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/glue/devtools/bound_object.cc b/webkit/glue/devtools/bound_object.cc
index bc8310c..c9993c4 100644
--- a/webkit/glue/devtools/bound_object.cc
+++ b/webkit/glue/devtools/bound_object.cc
@@ -6,7 +6,7 @@
#include <string>
-#include "V8Proxy.h"
+#include "v8_proxy.h"
#include "webkit/glue/devtools/bound_object.h"
using namespace WebCore;
@@ -22,7 +22,7 @@ BoundObject::BoundObject(
v8_this_ = v8::Persistent<v8::External>::New(v8::External::New(v8_this));
v8::Local<v8::FunctionTemplate> local_template =
- v8::FunctionTemplate::New(V8Proxy::checkNewLegal);
+ v8::FunctionTemplate::New(V8Proxy::CheckNewLegal);
host_template_ = v8::Persistent<v8::FunctionTemplate>::New(local_template);
host_template_->SetClassName(v8::String::New(object_name));
}
@@ -54,7 +54,7 @@ void BoundObject::Build() {
v8::Local<v8::Function> constructor = host_template_->GetFunction();
bound_object_ = v8::Persistent<v8::Object>::New(
- SafeAllocation::newInstance(constructor));
+ SafeAllocation::NewInstance(constructor));
v8::Handle<v8::Object> global = context_->Global();
global->Set(v8::String::New(object_name_), bound_object_);