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

Unified Diff: webkit/glue/webkitclient_impl.cc

Issue 3069012: AutoFill: Temporarily remove a NOTREACHED until WK is fixed to not send in (Closed)
Patch Set: Bug. Created 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkitclient_impl.cc
diff --git a/webkit/glue/webkitclient_impl.cc b/webkit/glue/webkitclient_impl.cc
index ee98a15cab7f10826fa3a97894a6e6386b61b616..a904b76d10da51e26f9c19291fffaf6dee50efda 100644
--- a/webkit/glue/webkitclient_impl.cc
+++ b/webkit/glue/webkitclient_impl.cc
@@ -280,7 +280,9 @@ WebData WebKitClientImpl::loadResource(const char* name) {
return WebData(resource.data(), resource.size());
}
}
- NOTREACHED() << "Unknown image resource " << name;
+ // TODO(jhawkins): Restore this NOTREACHED once WK stops sending in empty
+ // strings. http://crbug.com/50675.
+ //NOTREACHED() << "Unknown image resource " << name;
return WebData();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698