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

Unified Diff: webkit/glue/webframe_impl.cc

Issue 8947: Fix the JSC build.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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: webkit/glue/webframe_impl.cc
===================================================================
--- webkit/glue/webframe_impl.cc (revision 4241)
+++ webkit/glue/webframe_impl.cc (working copy)
@@ -715,14 +715,14 @@
#endif
#if USE(JSC)
- KJS::JSGlobalObject* window = frame_->script()->globalObject();
- KJS::ExecState* exec = window->globalExec();
- KJS::Bindings::RootObject* root = frame_->script()->bindingRootObject();
+ JSC::JSGlobalObject* window = frame_->script()->globalObject();
+ JSC::ExecState* exec = window->globalExec();
+ JSC::Bindings::RootObject* root = frame_->script()->bindingRootObject();
ASSERT(exec);
- KJS::RuntimeObjectImp* instance = KJS::Bindings::Instance::createRuntimeObject(
- exec, KJS::Bindings::CInstance::create(object, root));
- KJS::Identifier id(exec, key.latin1().data());
- KJS::PutPropertySlot slot;
+ JSC::RuntimeObjectImp* instance = JSC::Bindings::Instance::createRuntimeObject(
+ exec, JSC::Bindings::CInstance::create(object, root));
+ JSC::Identifier id(exec, key.latin1().data());
+ JSC::PutPropertySlot slot;
window->put(exec, id, instance, slot);
#endif
}

Powered by Google App Engine
This is Rietveld 408576698