Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: webkit/api/public/WebFrame.h

Issue 150146: Add Reload and LoadData methods to WebFrame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/api/public/WebData.h ('k') | webkit/api/public/WebURLRequest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « webkit/api/public/WebData.h ('k') | webkit/api/public/WebURLRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698