| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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, |
| 104 int extension_group); | 104 int extension_group); |
| 105 virtual void addMessageToConsole(const WebKit::WebConsoleMessage&); | 105 virtual void addMessageToConsole(const WebKit::WebConsoleMessage&); |
| 106 virtual void collectGarbage(); | 106 virtual void collectGarbage(); |
| 107 #if WEBKIT_USING_V8 | 107 #if WEBKIT_USING_V8 |
| 108 virtual v8::Local<v8::Context> mainWorldScriptContext() const; | 108 virtual v8::Local<v8::Context> mainWorldScriptContext() const; |
| 109 #endif | 109 #endif |
| 110 virtual bool insertStyleText(const WebKit::WebString& style_text); | 110 virtual bool insertStyleText( |
| 111 const WebKit::WebString& css, const WebKit::WebString& id); |
| 111 virtual void reload(); | 112 virtual void reload(); |
| 112 virtual void loadRequest(const WebKit::WebURLRequest& request); | 113 virtual void loadRequest(const WebKit::WebURLRequest& request); |
| 113 virtual void loadHistoryItem(const WebKit::WebHistoryItem& history_item); | 114 virtual void loadHistoryItem(const WebKit::WebHistoryItem& history_item); |
| 114 virtual void loadData( | 115 virtual void loadData( |
| 115 const WebKit::WebData& data, const WebKit::WebString& mime_type, | 116 const WebKit::WebData& data, const WebKit::WebString& mime_type, |
| 116 const WebKit::WebString& text_encoding, const WebKit::WebURL& base_url, | 117 const WebKit::WebString& text_encoding, const WebKit::WebURL& base_url, |
| 117 const WebKit::WebURL& unreachable_url, bool replace); | 118 const WebKit::WebURL& unreachable_url, bool replace); |
| 118 virtual void loadHTMLString( | 119 virtual void loadHTMLString( |
| 119 const WebKit::WebData& html, const WebKit::WebURL& base_url, | 120 const WebKit::WebData& html, const WebKit::WebURL& base_url, |
| 120 const WebKit::WebURL& unreachable_url, bool replace); | 121 const WebKit::WebURL& unreachable_url, bool replace); |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 // 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 |
| 366 // listeners. | 367 // listeners. |
| 367 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 368 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 368 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 369 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 369 PasswordListenerMap password_listeners_; | 370 PasswordListenerMap password_listeners_; |
| 370 | 371 |
| 371 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 372 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 372 }; | 373 }; |
| 373 | 374 |
| 374 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 375 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |