| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 const GURL& base_url); | 87 const GURL& base_url); |
| 88 virtual void LoadAlternateHTMLString(const WebRequest* request, | 88 virtual void LoadAlternateHTMLString(const WebRequest* request, |
| 89 const std::string& html_text, | 89 const std::string& html_text, |
| 90 const GURL& display_url, | 90 const GURL& display_url, |
| 91 bool replace); | 91 bool replace); |
| 92 virtual void LoadAlternateHTMLErrorPage(const WebRequest* request, | 92 virtual void LoadAlternateHTMLErrorPage(const WebRequest* request, |
| 93 const WebError& error, | 93 const WebError& error, |
| 94 const GURL& error_page_url, | 94 const GURL& error_page_url, |
| 95 bool replace, | 95 bool replace, |
| 96 const GURL& fake_url); | 96 const GURL& fake_url); |
| 97 virtual void ExecuteJavaScript(const std::string& js_code, |
| 98 const std::string& script_url); |
| 97 virtual bool GetPreviousState(GURL* url, std::wstring* title, | 99 virtual bool GetPreviousState(GURL* url, std::wstring* title, |
| 98 std::string* history_state) const; | 100 std::string* history_state) const; |
| 99 virtual bool GetCurrentState(GURL* url, std::wstring* title, | 101 virtual bool GetCurrentState(GURL* url, std::wstring* title, |
| 100 std::string* history_state) const; | 102 std::string* history_state) const; |
| 101 virtual bool HasCurrentState() const; | 103 virtual bool HasCurrentState() const; |
| 102 virtual GURL GetURL() const; | 104 virtual GURL GetURL() const; |
| 103 virtual GURL GetFavIconURL() const; | 105 virtual GURL GetFavIconURL() const; |
| 104 virtual GURL GetOSDDURL() const; | 106 virtual GURL GetOSDDURL() const; |
| 105 virtual WebDataSource* GetDataSource() const; | 107 virtual WebDataSource* GetDataSource() const; |
| 106 virtual WebDataSource* GetProvisionalDataSource() const; | 108 virtual WebDataSource* GetProvisionalDataSource() const; |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 // In "printing" mode. Used as a state check. | 444 // In "printing" mode. Used as a state check. |
| 443 bool printing_; | 445 bool printing_; |
| 444 | 446 |
| 445 // For each printed page, the view of the document in pixels. | 447 // For each printed page, the view of the document in pixels. |
| 446 Vector<WebCore::IntRect> pages_; | 448 Vector<WebCore::IntRect> pages_; |
| 447 | 449 |
| 448 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); | 450 DISALLOW_COPY_AND_ASSIGN(WebFrameImpl); |
| 449 }; | 451 }; |
| 450 | 452 |
| 451 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ | 453 #endif // WEBKIT_GLUE_WEBFRAME_IMPL_H_ |
| OLD | NEW |