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

Unified Diff: webkit/plugins/ppapi/ppb_url_response_info_impl.cc

Issue 9391013: Make a global enum to differentiate impl & proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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
Index: webkit/plugins/ppapi/ppb_url_response_info_impl.cc
diff --git a/webkit/plugins/ppapi/ppb_url_response_info_impl.cc b/webkit/plugins/ppapi/ppb_url_response_info_impl.cc
index cb96f8e3e1ca15d05428f870ef44cd10bb861fe4..c34abbe3357ae4b8b699f71f74f5d18d5415be65 100644
--- a/webkit/plugins/ppapi/ppb_url_response_info_impl.cc
+++ b/webkit/plugins/ppapi/ppb_url_response_info_impl.cc
@@ -51,7 +51,7 @@ bool IsRedirect(int32_t status) {
} // namespace
PPB_URLResponseInfo_Impl::PPB_URLResponseInfo_Impl(PP_Instance instance)
- : Resource(instance),
+ : Resource(::ppapi::OBJECT_IS_IMPL, instance),
status_code_(-1) {
}

Powered by Google App Engine
This is Rietveld 408576698