Title: [98292] trunk/Source/WebKit/efl
- Revision
- 98292
- Author
- [email protected]
- Date
- 2011-10-24 15:51:51 -0700 (Mon, 24 Oct 2011)
Log Message
[EFL] Build fix. Rename all instances of a variable when it gets changed
https://bugs.webkit.org/show_bug.cgi?id=70732
Unreviewed build fix.
Patch by Ivan Briano <[email protected]> on 2011-10-24
* ewk/ewk_js.cpp:
(ewk_js_property_set): s/obj/object/
* ewk/ewk_view.cpp:
(ewk_view_js_object_add): s/exec/executeState/
Modified Paths
Diff
Modified: trunk/Source/WebKit/efl/ChangeLog (98291 => 98292)
--- trunk/Source/WebKit/efl/ChangeLog 2011-10-24 22:51:25 UTC (rev 98291)
+++ trunk/Source/WebKit/efl/ChangeLog 2011-10-24 22:51:51 UTC (rev 98292)
@@ -1,3 +1,15 @@
+2011-10-24 Ivan Briano <[email protected]>
+
+ [EFL] Build fix. Rename all instances of a variable when it gets changed
+ https://bugs.webkit.org/show_bug.cgi?id=70732
+
+ Unreviewed build fix.
+
+ * ewk/ewk_js.cpp:
+ (ewk_js_property_set): s/obj/object/
+ * ewk/ewk_view.cpp:
+ (ewk_view_js_object_add): s/exec/executeState/
+
2011-10-21 Gyuyoung Kim <[email protected]>
[EFL] Change efl style local variables with WebKit coding Style.
Modified: trunk/Source/WebKit/efl/ewk/ewk_js.cpp (98291 => 98292)
--- trunk/Source/WebKit/efl/ewk/ewk_js.cpp 2011-10-24 22:51:25 UTC (rev 98291)
+++ trunk/Source/WebKit/efl/ewk/ewk_js.cpp 2011-10-24 22:51:51 UTC (rev 98292)
@@ -153,7 +153,7 @@
bool fail = false;
EINA_SAFETY_ON_NULL_RETURN_VAL(npObject, false);
- EINA_MAGIC_CHECK_OR_RETURN(obj, false);
+ EINA_MAGIC_CHECK_OR_RETURN(object, false);
if (!_NPN_IdentifierIsString(name)) {
ERR("int NPIdentifier is not supported.");
Modified: trunk/Source/WebKit/efl/ewk/ewk_view.cpp (98291 => 98292)
--- trunk/Source/WebKit/efl/ewk/ewk_view.cpp 2011-10-24 22:51:25 UTC (rev 98291)
+++ trunk/Source/WebKit/efl/ewk/ewk_view.cpp 2011-10-24 22:51:51 UTC (rev 98292)
@@ -3654,10 +3654,10 @@
object->view = ewkView;
JSC::JSObject* runtimeObject = (JSC::JSObject*)JSC::Bindings::CInstance::create((NPObject*)object, root)->createRuntimeObject(executeState);
- JSC::Identifier id = JSC::Identifier(exec, objectName);
+ JSC::Identifier id = JSC::Identifier(executeState, objectName);
JSC::PutPropertySlot slot;
- window->putVirtual(exec, id, runtimeObject, slot);
+ window->putVirtual(executeState, id, runtimeObject, slot);
return EINA_TRUE;
#else
return EINA_FALSE;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes