summaryrefslogtreecommitdiffstats
path: root/webkit/glue/plugins/pepper_url_response_info.cc
diff options
context:
space:
mode:
authorneb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 19:40:54 +0000
committerneb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 19:40:54 +0000
commit37027147e508f367a23f7d392ef3d453a96d065b (patch)
tree7458f1cc528957c93a2d6aaa14913761cf0ca658 /webkit/glue/plugins/pepper_url_response_info.cc
parentf7b28d07ca2310391c23ad415668bb7a24ab78ef (diff)
downloadchromium_src-37027147e508f367a23f7d392ef3d453a96d065b.zip
chromium_src-37027147e508f367a23f7d392ef3d453a96d065b.tar.gz
chromium_src-37027147e508f367a23f7d392ef3d453a96d065b.tar.bz2
Fix up PPAPI renames in Chrome.
BUG=57631 TEST=ppapi/tests pass Review URL: http://codereview.chromium.org/3537011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61830 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins/pepper_url_response_info.cc')
-rw-r--r--webkit/glue/plugins/pepper_url_response_info.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/plugins/pepper_url_response_info.cc b/webkit/glue/plugins/pepper_url_response_info.cc
index 79042ba..8af3385 100644
--- a/webkit/glue/plugins/pepper_url_response_info.cc
+++ b/webkit/glue/plugins/pepper_url_response_info.cc
@@ -47,7 +47,7 @@ PP_Var GetProperty(PP_Resource response_id,
scoped_refptr<URLResponseInfo> response(
Resource::GetAs<URLResponseInfo>(response_id));
if (!response)
- return PP_MakeVoid();
+ return PP_MakeUndefined();
return response->GetProperty(property);
}
@@ -97,7 +97,7 @@ PP_Var URLResponseInfo::GetProperty(PP_URLResponseProperty_Dev property) {
return StringVar::StringToPPVar(module(), headers_);
default:
NOTIMPLEMENTED(); // TODO(darin): Implement me!
- return PP_MakeVoid();
+ return PP_MakeUndefined();
}
}