Commit 5066a78c authored by jhawkins@chromium.org's avatar jhawkins@chromium.org

AutoFill: Temporarily remove a NOTREACHED until WK is fixed to not send in

empty strings.

BUG=50674
TEST=none

Review URL: http://codereview.chromium.org/3069012

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54196 0039d316-1c4b-4281-b951-d872f2087c98
parent 25db6e1e
...@@ -280,7 +280,9 @@ WebData WebKitClientImpl::loadResource(const char* name) { ...@@ -280,7 +280,9 @@ WebData WebKitClientImpl::loadResource(const char* name) {
return WebData(resource.data(), resource.size()); 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(); return WebData();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment