| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 virtual void ExecuteScript(const WebKit::WebScriptSource& source); | 94 virtual void ExecuteScript(const WebKit::WebScriptSource& source); |
| 95 virtual void ExecuteScriptInNewContext( | 95 virtual void ExecuteScriptInNewContext( |
| 96 const WebKit::WebScriptSource* sources, int num_sources); | 96 const WebKit::WebScriptSource* sources, int num_sources); |
| 97 virtual bool InsertCSSStyles(const std::string& css); | 97 virtual bool InsertCSSStyles(const std::string& css); |
| 98 virtual bool GetPreviousHistoryState(std::string* history_state) const; | 98 virtual bool GetPreviousHistoryState(std::string* history_state) const; |
| 99 virtual bool GetCurrentHistoryState(std::string* history_state) const; | 99 virtual bool GetCurrentHistoryState(std::string* history_state) const; |
| 100 virtual bool HasCurrentHistoryState() const; | 100 virtual bool HasCurrentHistoryState() const; |
| 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 scoped_refptr<class FeedList> GetFeedList() const; | 105 virtual scoped_refptr<class FeedList> GetFeedList() const; |
| 105 virtual WebDataSource* GetDataSource() const; | 106 virtual WebDataSource* GetDataSource() const; |
| 106 virtual WebDataSource* GetProvisionalDataSource() const; | 107 virtual WebDataSource* GetProvisionalDataSource() const; |
| 107 virtual void StopLoading(); | 108 virtual void StopLoading(); |
| 108 virtual WebFrame* GetOpener() const; | 109 virtual WebFrame* GetOpener() const; |
| 109 virtual WebFrame* GetParent() const; | 110 virtual WebFrame* GetParent() const; |
| 110 virtual WebFrame* GetTop() const; | 111 virtual WebFrame* GetTop() const; |
| 111 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; | 112 virtual WebFrame* GetChildFrame(const std::wstring& xpath) const; |
| 112 virtual WebView* GetView() const; | 113 virtual WebView* GetView() const; |
| 113 virtual std::string GetSecurityOrigin() const; | 114 virtual std::string GetSecurityOrigin() const; |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 // The input fields that are interested in edit events and their associated | 409 // The input fields that are interested in edit events and their associated |
| 409 // listeners. | 410 // listeners. |
| 410 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, | 411 typedef HashMap<RefPtr<WebCore::HTMLInputElement>, |
| 411 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; | 412 webkit_glue::PasswordAutocompleteListener*> PasswordListenerMap; |
| 412 PasswordListenerMap password_listeners_; | 413 PasswordListenerMap password_listeners_; |
| 413 | 414 |
| 414 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 415 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 415 }; | 416 }; |
| 416 | 417 |
| 417 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 418 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |