From 9c6bbc0f541bf8522b0d5ead1cf459bd7af3c6ab Mon Sep 17 00:00:00 2001 From: darin Date: Mon, 1 Nov 2004 21:23:14 +0000 Subject: [PATCH] - fixed Remove reference to "WebScriptMethods" from WebScriptObject.h comments * bindings/objc/WebScriptObject.h: Removed unneeded #ifdef protection for multiple includes (since this is an Objective-C header and we use #import for those). Fixed comments as requested in the bug report to match the contents of the file. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7923 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- JavaScriptCore/ChangeLog | 8 ++++++++ JavaScriptCore/bindings/objc/WebScriptObject.h | 10 +++------- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog index 71273e9..145d960 100644 --- a/JavaScriptCore/ChangeLog +++ b/JavaScriptCore/ChangeLog @@ -1,3 +1,11 @@ +2004-11-01 Darin Adler + + - fixed Remove reference to "WebScriptMethods" from WebScriptObject.h comments + + * bindings/objc/WebScriptObject.h: Removed unneeded #ifdef protection for multiple includes (since + this is an Objective-C header and we use #import for those). Fixed comments as requested in the bug + report to match the contents of the file. + === Safari-169 === === Safari-168 === diff --git a/JavaScriptCore/bindings/objc/WebScriptObject.h b/JavaScriptCore/bindings/objc/WebScriptObject.h index 5956dca..d712834 100644 --- a/JavaScriptCore/bindings/objc/WebScriptObject.h +++ b/JavaScriptCore/bindings/objc/WebScriptObject.h @@ -3,21 +3,19 @@ Public header file. */ -#ifndef _WEB_SCRIPT_OBJECT_H_ -#define _WEB_SCRIPT_OBJECT_H_ #import -// NSObject (WebScriptMethods) ----------------------------------------------------- +// NSObject (WebScripting) ----------------------------------------------------- /* - The methods in WebScriptMethods are optionally implemented by classes whose + The methods in WebScripting are optionally implemented by classes whose interfaces are exported (wrapped) to a web scripting environment. The scripting environment currently supported by WebKit uses the JavaScript language. Instances automatically reflect their interfaces in the scripting environment. This - automatic reflection can be overriden using the class methods defined in the WebScriptMethods + automatic reflection can be overriden using the class methods defined in the WebScripting informal protocol. Access to the attributes of an instance is done using KVC. Specifically the following @@ -260,5 +258,3 @@ + (WebUndefined *)undefined; @end - -#endif -- 1.8.3.1