OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 - (NSURL *)URLWithCString:(const char *)URLCString; | 92 - (NSURL *)URLWithCString:(const char *)URLCString; |
93 - (NSMutableURLRequest *)requestWithURLCString:(const char *)URLCString; | 93 - (NSMutableURLRequest *)requestWithURLCString:(const char *)URLCString; |
94 | 94 |
95 // Subclasses must override these. | 95 // Subclasses must override these. |
96 // The "handle" prefix is needed to avoid overriding NSView methods. | 96 // The "handle" prefix is needed to avoid overriding NSView methods. |
97 - (void)handleMouseMoved:(NSEvent *)event; | 97 - (void)handleMouseMoved:(NSEvent *)event; |
98 - (void)handleMouseEntered:(NSEvent *)event; | 98 - (void)handleMouseEntered:(NSEvent *)event; |
99 - (void)handleMouseExited:(NSEvent *)event; | 99 - (void)handleMouseExited:(NSEvent *)event; |
100 - (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values; | 100 - (void)setAttributeKeys:(NSArray *)keys andValues:(NSArray *)values; |
101 - (void)focusChanged; | 101 - (void)focusChanged; |
| 102 - (void)updateAndSetWindow; |
102 | 103 |
103 - (WebFrame *)webFrame; | 104 - (WebFrame *)webFrame; |
104 - (WebDataSource *)dataSource; | 105 - (WebDataSource *)dataSource; |
105 - (WebView *)webView; | 106 - (WebView *)webView; |
106 - (NSWindow *)currentWindow; | 107 - (NSWindow *)currentWindow; |
107 - (WebCore::HTMLPlugInElement*)element; | 108 - (WebCore::HTMLPlugInElement*)element; |
108 | 109 |
109 - (void)removeTrackingRect; | 110 - (void)removeTrackingRect; |
110 - (void)resetTrackingRect; | 111 - (void)resetTrackingRect; |
111 | 112 |
(...skipping 28 matching lines...) Expand all Loading... |
140 @end | 141 @end |
141 | 142 |
142 | 143 |
143 namespace WebKit { | 144 namespace WebKit { |
144 bool getAuthenticationInfo(const char* protocolStr, const char* hostStr, int32_t
port, const char* schemeStr, const char* realmStr, | 145 bool getAuthenticationInfo(const char* protocolStr, const char* hostStr, int32_t
port, const char* schemeStr, const char* realmStr, |
145 WTF::CString& username, WTF::CString& password); | 146 WTF::CString& username, WTF::CString& password); |
146 } | 147 } |
147 | 148 |
148 #endif | 149 #endif |
149 | 150 |
OLD | NEW |