| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 const GURL& fake_url); | 92 const GURL& fake_url); |
| 93 virtual void ExecuteJavaScript(const std::string& js_code, | 93 virtual void ExecuteJavaScript(const std::string& js_code, |
| 94 const GURL& script_url, | 94 const GURL& script_url, |
| 95 int start_line); | 95 int start_line); |
| 96 virtual bool GetPreviousHistoryState(std::string* history_state) const; | 96 virtual bool GetPreviousHistoryState(std::string* history_state) const; |
| 97 virtual bool GetCurrentHistoryState(std::string* history_state) const; | 97 virtual bool GetCurrentHistoryState(std::string* history_state) const; |
| 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 WebDataSource* GetDataSource() const; | 103 virtual WebDataSource* GetDataSource() const; |
| 103 virtual WebDataSource* GetProvisionalDataSource() const; | 104 virtual WebDataSource* GetProvisionalDataSource() const; |
| 104 virtual void StopLoading(); | 105 virtual void StopLoading(); |
| 105 virtual WebFrame* GetOpener() const; | 106 virtual WebFrame* GetOpener() const; |
| 106 virtual WebFrame* GetParent() const; | 107 virtual WebFrame* GetParent() const; |
| 107 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; | 108 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; |
| 108 virtual WebView* GetView() const; | 109 virtual WebView* GetView() const; |
| 109 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, | 110 virtual bool CaptureImage(scoped_ptr<skia::BitmapPlatformDevice>* image, |
| 110 bool scroll_to_zero); | 111 bool scroll_to_zero); |
| 111 | 112 |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 // The input fields that are interested in edit events and their associated | 417 // The input fields that are interested in edit events and their associated |
| 417 // listeners. | 418 // listeners. |
| 418 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 419 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 419 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 420 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 420 PasswordListenerMap password_listeners_; | 421 PasswordListenerMap password_listeners_; |
| 421 | 422 |
| 422 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 423 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 423 }; | 424 }; |
| 424 | 425 |
| 425 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 426 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |