summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-30 05:03:33 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-30 05:03:33 +0000
commit984f1c65ebfbf446f7ba32ae3467ea3131cb3c8a (patch)
treeaf1f12b5ed8a2f28c6c7b996027f85c78622f58b /webkit
parenta033865a389642cc4160901e3343c8635cc005e0 (diff)
downloadchromium_src-984f1c65ebfbf446f7ba32ae3467ea3131cb3c8a.zip
chromium_src-984f1c65ebfbf446f7ba32ae3467ea3131cb3c8a.tar.gz
chromium_src-984f1c65ebfbf446f7ba32ae3467ea3131cb3c8a.tar.bz2
Fix GCC warning about unhandled enum cases.
TBR=brettw Review URL: http://codereview.chromium.org/2799045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51229 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/plugins/pepper_url_request_info.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/glue/plugins/pepper_url_request_info.cc b/webkit/glue/plugins/pepper_url_request_info.cc
index a95af65..ee8f11b 100644
--- a/webkit/glue/plugins/pepper_url_request_info.cc
+++ b/webkit/glue/plugins/pepper_url_request_info.cc
@@ -127,8 +127,9 @@ bool URLRequestInfo::SetStringProperty(PP_URLRequestProperty property,
// TODO(darin): Support extra request headers
NOTIMPLEMENTED();
return false;
+ default:
+ return false;
}
- return false;
}
bool URLRequestInfo::AppendDataToBody(const std::string& data) {