| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 virtual WebKit::WebHistoryItem previousHistoryItem() const; | 120 virtual WebKit::WebHistoryItem previousHistoryItem() const; |
| 121 virtual WebKit::WebHistoryItem currentHistoryItem() const; | 121 virtual WebKit::WebHistoryItem currentHistoryItem() const; |
| 122 virtual void enableViewSourceMode(bool enable); | 122 virtual void enableViewSourceMode(bool enable); |
| 123 virtual bool isViewSourceModeEnabled() const; | 123 virtual bool isViewSourceModeEnabled() const; |
| 124 virtual void setReferrerForRequest( | 124 virtual void setReferrerForRequest( |
| 125 WebKit::WebURLRequest& request, const WebKit::WebURL& referrer); | 125 WebKit::WebURLRequest& request, const WebKit::WebURL& referrer); |
| 126 virtual void dispatchWillSendRequest(WebKit::WebURLRequest& request); | 126 virtual void dispatchWillSendRequest(WebKit::WebURLRequest& request); |
| 127 virtual void commitDocumentData(const char* data, size_t length); | 127 virtual void commitDocumentData(const char* data, size_t length); |
| 128 virtual unsigned unloadListenerCount() const; | 128 virtual unsigned unloadListenerCount() const; |
| 129 virtual bool isProcessingUserGesture() const; | 129 virtual bool isProcessingUserGesture() const; |
| 130 virtual bool willSuppressOpenerInNewFrame() const; |
| 130 virtual void replaceSelection(const WebKit::WebString& text); | 131 virtual void replaceSelection(const WebKit::WebString& text); |
| 131 virtual void insertText(const WebKit::WebString& text); | 132 virtual void insertText(const WebKit::WebString& text); |
| 132 virtual void setMarkedText( | 133 virtual void setMarkedText( |
| 133 const WebKit::WebString& text, unsigned location, unsigned length); | 134 const WebKit::WebString& text, unsigned location, unsigned length); |
| 134 virtual void unmarkText(); | 135 virtual void unmarkText(); |
| 135 virtual bool hasMarkedText() const; | 136 virtual bool hasMarkedText() const; |
| 136 virtual WebKit::WebRange markedRange() const; | 137 virtual WebKit::WebRange markedRange() const; |
| 137 virtual bool executeCommand(const WebKit::WebString& command); | 138 virtual bool executeCommand(const WebKit::WebString& command); |
| 138 virtual bool executeCommand( | 139 virtual bool executeCommand( |
| 139 const WebKit::WebString& command, const WebKit::WebString& value); | 140 const WebKit::WebString& command, const WebKit::WebString& value); |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 OwnPtr<ChromePrintContext> print_context_; | 376 OwnPtr<ChromePrintContext> print_context_; |
| 376 | 377 |
| 377 // The input fields that are interested in edit events and their associated | 378 // The input fields that are interested in edit events and their associated |
| 378 // listeners. | 379 // listeners. |
| 379 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 380 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 380 WebKit::PasswordAutocompleteListener*> PasswordListenerMap; | 381 WebKit::PasswordAutocompleteListener*> PasswordListenerMap; |
| 381 PasswordListenerMap password_listeners_; | 382 PasswordListenerMap password_listeners_; |
| 382 }; | 383 }; |
| 383 | 384 |
| 384 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 385 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |