OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. | 2 * Copyright (C) 2006 Apple Computer, 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 virtual WebKit::WebFrame* firstChild() const; | 83 virtual WebKit::WebFrame* firstChild() const; |
84 virtual WebKit::WebFrame* lastChild() const; | 84 virtual WebKit::WebFrame* lastChild() const; |
85 virtual WebKit::WebFrame* nextSibling() const; | 85 virtual WebKit::WebFrame* nextSibling() const; |
86 virtual WebKit::WebFrame* previousSibling() const; | 86 virtual WebKit::WebFrame* previousSibling() const; |
87 virtual WebKit::WebFrame* traverseNext(bool wrap) const; | 87 virtual WebKit::WebFrame* traverseNext(bool wrap) const; |
88 virtual WebKit::WebFrame* traversePrevious(bool wrap) const; | 88 virtual WebKit::WebFrame* traversePrevious(bool wrap) const; |
89 virtual WebKit::WebFrame* findChildByName(const WebKit::WebString& name) const
; | 89 virtual WebKit::WebFrame* findChildByName(const WebKit::WebString& name) const
; |
90 virtual WebKit::WebFrame* findChildByExpression( | 90 virtual WebKit::WebFrame* findChildByExpression( |
91 const WebKit::WebString& xpath) const; | 91 const WebKit::WebString& xpath) const; |
92 virtual void forms(WebKit::WebVector<WebKit::WebForm>&) const; | 92 virtual void forms(WebKit::WebVector<WebKit::WebForm>&) const; |
93 virtual WebKit::WebString securityOrigin() const; | 93 virtual WebKit::WebSecurityOrigin securityOrigin() const; |
94 virtual void grantUniversalAccess(); | 94 virtual void grantUniversalAccess(); |
95 virtual NPObject* windowObject() const; | 95 virtual NPObject* windowObject() const; |
96 virtual void bindToWindowObject( | 96 virtual void bindToWindowObject( |
97 const WebKit::WebString& name, NPObject* object); | 97 const WebKit::WebString& name, NPObject* object); |
98 virtual void executeScript(const WebKit::WebScriptSource&); | 98 virtual void executeScript(const WebKit::WebScriptSource&); |
99 virtual void executeScriptInNewContext( | 99 virtual void executeScriptInNewContext( |
100 const WebKit::WebScriptSource* sources, unsigned num_sources, | 100 const WebKit::WebScriptSource* sources, unsigned num_sources, |
101 int extension_group); | 101 int extension_group); |
102 virtual void executeScriptInNewWorld( | 102 virtual void executeScriptInNewWorld( |
103 const WebKit::WebScriptSource* sources, unsigned num_sources, | 103 const WebKit::WebScriptSource* sources, unsigned num_sources, |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 // The input fields that are interested in edit events and their associated | 366 // The input fields that are interested in edit events and their associated |
367 // listeners. | 367 // listeners. |
368 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 368 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
369 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 369 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
370 PasswordListenerMap password_listeners_; | 370 PasswordListenerMap password_listeners_; |
371 | 371 |
372 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 372 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
373 }; | 373 }; |
374 | 374 |
375 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 375 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
OLD | NEW |