+2004-10-29 Darin Adler <darin@apple.com>
+
+ - fixed <rdar://problem/3855573> Remove reference to "WebScriptMethods" from WebScriptObject.h comments
+
+ * Plugins.subproj/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.
+
2004-10-27 Ken Kocienda <kocienda@apple.com>
Reviewed by Chris
* Plugins.subproj/WebBaseNetscapePluginView.m:
-2004-09-27 Chris Blumenberg <cblu@apple.com>
-
- Fixed previous reviewer line.
-
- * ChangeLog:
-
2004-09-27 Chris Blumenberg <cblu@apple.com>
Fixed: <rdar://problem/3502138> text files don't remember scroll position when going back or reloading
* WebView.subproj/WebFramePrivate.h:
declare new method
-2004-09-10 Chris Blumenberg <cblu@apple.com>
-
- Fixed previous "Reviewed by" line.
-
- * ChangeLog:
-
2004-09-09 Chris Blumenberg <cblu@apple.com>
Support for: <rdar://problem/3795485> debug menu item to enable RSS animation on first layout
action names that NSTextView uses. Later we will use some or all of these, but we can do
that part after the localization freeze.
-2004-09-08 Chris Blumenberg <cblu@apple.com>
-
- Fixed previous "Reviewed by" line.
-
- * ChangeLog:
-
2004-09-08 Chris Blumenberg <cblu@apple.com>
Fixed: <rdar://problem/3778785> REGRESSION (Mail): copying from MS word and pasting into editable region leaves internal clipboard data
Public header file.
*/
-#ifndef _WEB_SCRIPT_OBJECT_H_
-#define _WEB_SCRIPT_OBJECT_H_
#import <Foundation/Foundation.h>
-// 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
+ (WebUndefined *)undefined;
@end
-
-#endif