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

Unified Diff: ppapi/shared_impl/ppb_file_ref_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_crypto_shared.cc ('k') | ppapi/shared_impl/ppb_file_ref_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_file_ref_shared.h
diff --git a/ppapi/shared_impl/file_ref_impl.h b/ppapi/shared_impl/ppb_file_ref_shared.h
similarity index 77%
rename from ppapi/shared_impl/file_ref_impl.h
rename to ppapi/shared_impl/ppb_file_ref_shared.h
index 58ee0fe53283f186856c084ba48527c7bd88496d..3d0a9f8af54145f083c6c2fc7a0caabf9aed41ed 100644
--- a/ppapi/shared_impl/file_ref_impl.h
+++ b/ppapi/shared_impl/ppb_file_ref_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_FILE_REF_IMPL_H_
-#define PPAPI_SHARED_IMPL_FILE_REF_IMPL_H_
+#ifndef PPAPI_SHARED_IMPL_PPB_FILE_REF_SHARED_H_
+#define PPAPI_SHARED_IMPL_PPB_FILE_REF_SHARED_H_
#include <string>
@@ -29,15 +29,16 @@ struct PPB_FileRef_CreateInfo {
// This class provides the shared implementation of a FileRef. The functions
// that actually "do stuff" like Touch and MakeDirectory are implemented
// differently for the proxied and non-proxied derived classes.
-class PPAPI_SHARED_EXPORT FileRefImpl : public Resource,
- public thunk::PPB_FileRef_API {
+class PPAPI_SHARED_EXPORT PPB_FileRef_Shared
+ : public Resource,
+ public thunk::PPB_FileRef_API {
public:
struct InitAsImpl {};
struct InitAsProxy {};
- FileRefImpl(const InitAsImpl&, const PPB_FileRef_CreateInfo& info);
- FileRefImpl(const InitAsProxy&, const PPB_FileRef_CreateInfo& info);
- virtual ~FileRefImpl();
+ PPB_FileRef_Shared(const InitAsImpl&, const PPB_FileRef_CreateInfo& info);
+ PPB_FileRef_Shared(const InitAsProxy&, const PPB_FileRef_CreateInfo& info);
+ virtual ~PPB_FileRef_Shared();
// Resource overrides.
virtual thunk::PPB_FileRef_API* AsPPB_FileRef_API() OVERRIDE;
@@ -57,9 +58,9 @@ class PPAPI_SHARED_EXPORT FileRefImpl : public Resource,
mutable scoped_refptr<StringVar> name_var_;
mutable scoped_refptr<StringVar> path_var_;
- DISALLOW_IMPLICIT_CONSTRUCTORS(FileRefImpl);
+ DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_FileRef_Shared);
};
} // namespace ppapi
-#endif // PPAPI_SHARED_IMPL_FILE_REF_IMPL_H_
+#endif // PPAPI_SHARED_IMPL_PPB_FILE_REF_SHARED_H_
« no previous file with comments | « ppapi/shared_impl/ppb_crypto_shared.cc ('k') | ppapi/shared_impl/ppb_file_ref_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698