| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 virtual GURL GetURL() const; | 101 virtual GURL GetURL() const; |
| 102 virtual GURL GetFavIconURL() const; | 102 virtual GURL GetFavIconURL() const; |
| 103 virtual GURL GetOSDDURL() const; | 103 virtual GURL GetOSDDURL() const; |
| 104 virtual int GetContentsPreferredWidth() const; | 104 virtual int GetContentsPreferredWidth() const; |
| 105 virtual WebDataSource* GetDataSource() const; | 105 virtual WebDataSource* GetDataSource() const; |
| 106 virtual WebDataSource* GetProvisionalDataSource() const; | 106 virtual WebDataSource* GetProvisionalDataSource() const; |
| 107 virtual void StopLoading(); | 107 virtual void StopLoading(); |
| 108 virtual WebFrame* GetOpener() const; | 108 virtual WebFrame* GetOpener() const; |
| 109 virtual WebFrame* GetParent() const; | 109 virtual WebFrame* GetParent() const; |
| 110 virtual WebFrame* GetTop() const; | 110 virtual WebFrame* GetTop() const; |
| 111 virtual WebFrame* GetFirstChild() const; |
| 112 virtual WebFrame* GetNextSibling() const; |
| 111 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; | 113 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; |
| 112 virtual WebView* GetView() const; | 114 virtual WebView* GetView() const; |
| 113 virtual void GetForms(std::vector<WebKit::WebForm>* forms) const; | 115 virtual void GetForms(std::vector<WebKit::WebForm>* forms) const; |
| 114 virtual std::string GetSecurityOrigin() const; | 116 virtual std::string GetSecurityOrigin() const; |
| 115 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, | 117 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, |
| 116 bool scroll_to_zero); | 118 bool scroll_to_zero); |
| 117 | 119 |
| 118 // This method calls createRuntimeObject (in KJS::Bindings::Instance), which | 120 // This method calls createRuntimeObject (in KJS::Bindings::Instance), which |
| 119 // increments the refcount of the NPObject passed in. | 121 // increments the refcount of the NPObject passed in. |
| 120 virtual void BindToWindowObject(const std::wstring& name, NPObject* object); | 122 virtual void BindToWindowObject(const std::wstring& name, NPObject* object); |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 // The input fields that are interested in edit events and their associated | 413 // The input fields that are interested in edit events and their associated |
| 412 // listeners. | 414 // listeners. |
| 413 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 415 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 414 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 416 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 415 PasswordListenerMap password_listeners_; | 417 PasswordListenerMap password_listeners_; |
| 416 | 418 |
| 417 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 419 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 418 }; | 420 }; |
| 419 | 421 |
| 420 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 422 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |