Index: ppapi/shared_impl/ppb_url_request_info_shared.h |
diff --git a/ppapi/shared_impl/url_request_info_impl.h b/ppapi/shared_impl/ppb_url_request_info_shared.h |
similarity index 90% |
rename from ppapi/shared_impl/url_request_info_impl.h |
rename to ppapi/shared_impl/ppb_url_request_info_shared.h |
index 67e2e49f14b49026fda3fd6168b443059a1516f4..c07b9c98b487dbc3f2f0229f1050122ae09e4399 100644 |
--- a/ppapi/shared_impl/url_request_info_impl.h |
+++ b/ppapi/shared_impl/ppb_url_request_info_shared.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef PPAPI_SHARED_IMPL_URL_REQUEST_INFO_IMPL_H_ |
-#define PPAPI_SHARED_IMPL_URL_REQUEST_INFO_IMPL_H_ |
+#ifndef PPAPI_SHARED_IMPL_PPB_URL_REQUEST_INFO_SHARED_H_ |
+#define PPAPI_SHARED_IMPL_PPB_URL_REQUEST_INFO_SHARED_H_ |
#include <string> |
#include <vector> |
@@ -86,16 +86,16 @@ struct PPAPI_SHARED_EXPORT PPB_URLRequestInfo_Data { |
// ppapi_messages.h |
}; |
-class PPAPI_SHARED_EXPORT URLRequestInfoImpl |
+class PPAPI_SHARED_EXPORT PPB_URLRequestInfo_Shared |
: public ::ppapi::Resource, |
public ::ppapi::thunk::PPB_URLRequestInfo_API { |
public: |
// This constructor initializes the object as a proxy object with the given |
// host resource. |
- URLRequestInfoImpl(const HostResource& host_resource, |
+ PPB_URLRequestInfo_Shared(const HostResource& host_resource, |
const PPB_URLRequestInfo_Data& data); |
- ~URLRequestInfoImpl(); |
+ ~PPB_URLRequestInfo_Shared(); |
// Resource overrides. |
virtual thunk::PPB_URLRequestInfo_API* AsPPB_URLRequestInfo_API() OVERRIDE; |
@@ -113,7 +113,7 @@ class PPAPI_SHARED_EXPORT URLRequestInfoImpl |
protected: |
// Constructor used by the webkit implementation. |
- URLRequestInfoImpl(PP_Instance instance, |
+ PPB_URLRequestInfo_Shared(PP_Instance instance, |
const PPB_URLRequestInfo_Data& data); |
bool SetUndefinedProperty(PP_URLRequestProperty property); |
@@ -128,9 +128,9 @@ class PPAPI_SHARED_EXPORT URLRequestInfoImpl |
private: |
PPB_URLRequestInfo_Data data_; |
- DISALLOW_IMPLICIT_CONSTRUCTORS(URLRequestInfoImpl); |
+ DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_URLRequestInfo_Shared); |
}; |
} // namespace ppapi |
-#endif // PPAPI_SHARED_IMPL_URL_REQUEST_INFO_IMPL_H_ |
+#endif // PPAPI_SHARED_IMPL_PPB_URL_REQUEST_INFO_SHARED_H_ |