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

Unified Diff: ppapi/shared_impl/ppb_url_request_info_shared.h

Issue 8790004: Rename the shared impl files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged Created 9 years 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
« no previous file with comments | « ppapi/shared_impl/ppb_opengles2_shared.cc ('k') | ppapi/shared_impl/ppb_url_request_info_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « ppapi/shared_impl/ppb_opengles2_shared.cc ('k') | ppapi/shared_impl/ppb_url_request_info_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698