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

Unified Diff: webkit/glue/webkitplatformsupport_impl.cc

Issue 14297005: Plumb net::ERR_ABORTED to Platform, so that it can be exposed to WebCore. This (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkitplatformsupport_impl.cc
===================================================================
--- webkit/glue/webkitplatformsupport_impl.cc (revision 194239)
+++ webkit/glue/webkitplatformsupport_impl.cc (working copy)
@@ -28,6 +28,7 @@
#include "grit/webkit_chromium_resources.h"
#include "grit/webkit_resources.h"
#include "grit/webkit_strings.h"
+#include "net/base/net_errors.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebCookie.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebData.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebDiscardableMemory.h"
@@ -398,6 +399,10 @@
return WebString::fromUTF8(webkit_glue::GetUserAgent(url));
}
+int WebKitPlatformSupportImpl::cancelledErrorCode() const {
+ return net::ERR_ABORTED;
+}
+
void WebKitPlatformSupportImpl::getPluginList(bool refresh,
WebPluginListBuilder* builder) {
std::vector<webkit::WebPluginInfo> plugins;
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698