| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 | 151 |
| 152 // Styling ------------------------------------------------------------- | 152 // Styling ------------------------------------------------------------- |
| 153 | 153 |
| 154 // Insert the given text as a STYLE element at the beginning of the | 154 // Insert the given text as a STYLE element at the beginning of the |
| 155 // document. | 155 // document. |
| 156 virtual bool insertStyleText(const WebString&) = 0; | 156 virtual bool insertStyleText(const WebString&) = 0; |
| 157 | 157 |
| 158 | 158 |
| 159 // Navigation ---------------------------------------------------------- | 159 // Navigation ---------------------------------------------------------- |
| 160 | 160 |
| 161 virtual void loadURL(const WebURLRequest&) = 0; | 161 virtual void loadRequest(const WebURLRequest&) = 0; |
| 162 | 162 |
| 163 virtual void loadData(const WebData& data, | 163 virtual void loadData(const WebData& data, |
| 164 const WebString& mimeType, | 164 const WebString& mimeType, |
| 165 const WebString& textEncoding, | 165 const WebString& textEncoding, |
| 166 const WebURL& baseURL, | 166 const WebURL& baseURL, |
| 167 const WebURL& unreachableURL, | 167 const WebURL& unreachableURL, |
| 168 bool replace) = 0; | 168 bool replace) = 0; |
| 169 | 169 |
| 170 virtual void loadHistorical(const WebHistoryItem&) = 0; | 170 virtual void loadHistoryItem(const WebHistoryItem&) = 0; |
| 171 | 171 |
| 172 virtual void reload() = 0; | 172 virtual void reload() = 0; |
| 173 | 173 |
| 174 virtual bool isLoading() = 0; | 174 virtual bool isLoading() = 0; |
| 175 | 175 |
| 176 // Stops any pending loads on the frame and its children. | 176 // Stops any pending loads on the frame and its children. |
| 177 virtual void stopLoading() = 0; | 177 virtual void stopLoading() = 0; |
| 178 | 178 |
| 179 // Returns the data source that is currently loading. May be null. | 179 // Returns the data source that is currently loading. May be null. |
| 180 virtual WebDataSource* provisionalDataSource() = 0; | 180 virtual WebDataSource* provisionalDataSource() = 0; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 | 246 |
| 247 | 247 |
| 248 // Find-in-page -------------------------------------------------------- | 248 // Find-in-page -------------------------------------------------------- |
| 249 | 249 |
| 250 // FIXME | 250 // FIXME |
| 251 }; | 251 }; |
| 252 | 252 |
| 253 } // namespace WebKit | 253 } // namespace WebKit |
| 254 | 254 |
| 255 #endif | 255 #endif |
| OLD | NEW |