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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 virtual WebKit::WebHistoryItem previousHistoryItem() const; | 126 virtual WebKit::WebHistoryItem previousHistoryItem() const; |
127 virtual WebKit::WebHistoryItem currentHistoryItem() const; | 127 virtual WebKit::WebHistoryItem currentHistoryItem() const; |
128 virtual void enableViewSourceMode(bool enable); | 128 virtual void enableViewSourceMode(bool enable); |
129 virtual bool isViewSourceModeEnabled() const; | 129 virtual bool isViewSourceModeEnabled() const; |
130 virtual void setReferrerForRequest( | 130 virtual void setReferrerForRequest( |
131 WebKit::WebURLRequest& request, const WebKit::WebURL& referrer); | 131 WebKit::WebURLRequest& request, const WebKit::WebURL& referrer); |
132 virtual void dispatchWillSendRequest(WebKit::WebURLRequest& request); | 132 virtual void dispatchWillSendRequest(WebKit::WebURLRequest& request); |
133 virtual void commitDocumentData(const char* data, size_t length); | 133 virtual void commitDocumentData(const char* data, size_t length); |
134 virtual unsigned unloadListenerCount() const; | 134 virtual unsigned unloadListenerCount() const; |
135 virtual bool isProcessingUserGesture() const; | 135 virtual bool isProcessingUserGesture() const; |
| 136 virtual bool willSuppressOpenerInNewFrame() const; |
136 virtual void replaceSelection(const WebKit::WebString& text); | 137 virtual void replaceSelection(const WebKit::WebString& text); |
137 virtual void insertText(const WebKit::WebString& text); | 138 virtual void insertText(const WebKit::WebString& text); |
138 virtual void setMarkedText( | 139 virtual void setMarkedText( |
139 const WebKit::WebString& text, unsigned location, unsigned length); | 140 const WebKit::WebString& text, unsigned location, unsigned length); |
140 virtual void unmarkText(); | 141 virtual void unmarkText(); |
141 virtual bool hasMarkedText() const; | 142 virtual bool hasMarkedText() const; |
142 virtual WebKit::WebRange markedRange() const; | 143 virtual WebKit::WebRange markedRange() const; |
143 virtual bool executeCommand(const WebKit::WebString& command); | 144 virtual bool executeCommand(const WebKit::WebString& command); |
144 virtual bool executeCommand( | 145 virtual bool executeCommand( |
145 const WebKit::WebString& command, const WebKit::WebString& value); | 146 const WebKit::WebString& command, const WebKit::WebString& value); |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 // The input fields that are interested in edit events and their associated | 384 // The input fields that are interested in edit events and their associated |
384 // listeners. | 385 // listeners. |
385 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 386 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
386 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 387 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
387 PasswordListenerMap password_listeners_; | 388 PasswordListenerMap password_listeners_; |
388 | 389 |
389 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 390 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
390 }; | 391 }; |
391 | 392 |
392 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 393 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
OLD | NEW |