| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 virtual bool HasCurrentHistoryState() const; | 98 virtual bool HasCurrentHistoryState() const; |
| 99 virtual GURL GetURL() const; | 99 virtual GURL GetURL() const; |
| 100 virtual GURL GetFavIconURL() const; | 100 virtual GURL GetFavIconURL() const; |
| 101 virtual GURL GetOSDDURL() const; | 101 virtual GURL GetOSDDURL() const; |
| 102 virtual scoped_refptr<class FeedList> GetFeedList() const; | 102 virtual scoped_refptr<class FeedList> GetFeedList() const; |
| 103 virtual WebDataSource* GetDataSource() const; | 103 virtual WebDataSource* GetDataSource() const; |
| 104 virtual WebDataSource* GetProvisionalDataSource() const; | 104 virtual WebDataSource* GetProvisionalDataSource() const; |
| 105 virtual void StopLoading(); | 105 virtual void StopLoading(); |
| 106 virtual WebFrame* GetOpener() const; | 106 virtual WebFrame* GetOpener() const; |
| 107 virtual WebFrame* GetParent() const; | 107 virtual WebFrame* GetParent() const; |
| 108 virtual WebFrame* GetTop() const; |
| 108 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; | 109 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; |
| 109 virtual WebView* GetView() const; | 110 virtual WebView* GetView() const; |
| 111 virtual std::string GetSecurityOrigin() const; |
| 110 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, | 112 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, |
| 111 bool scroll_to_zero); | 113 bool scroll_to_zero); |
| 112 | 114 |
| 113 // This method calls createRuntimeObject (in KJS::Bindings::Instance), which | 115 // This method calls createRuntimeObject (in KJS::Bindings::Instance), which |
| 114 // increments the refcount of the NPObject passed in. | 116 // increments the refcount of the NPObject passed in. |
| 115 virtual void BindToWindowObject(const std::wstring& name, NPObject* object); | 117 virtual void BindToWindowObject(const std::wstring& name, NPObject* object); |
| 116 virtual void CallJSGC(); | 118 virtual void CallJSGC(); |
| 117 | 119 |
| 118 virtual void* GetFrameImplementation() { return frame(); } | 120 virtual void* GetFrameImplementation() { return frame(); } |
| 119 | 121 |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 // The input fields that are interested in edit events and their associated | 419 // The input fields that are interested in edit events and their associated |
| 418 // listeners. | 420 // listeners. |
| 419 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 421 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 420 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 422 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 421 PasswordListenerMap password_listeners_; | 423 PasswordListenerMap password_listeners_; |
| 422 | 424 |
| 423 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 425 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 424 }; | 426 }; |
| 425 | 427 |
| 426 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 428 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |