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

Unified Diff: ppapi/shared_impl/ppb_video_decoder_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_url_util_shared.cc ('k') | ppapi/shared_impl/ppb_video_decoder_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_video_decoder_shared.h
diff --git a/ppapi/shared_impl/video_decoder_impl.h b/ppapi/shared_impl/ppb_video_decoder_shared.h
similarity index 87%
rename from ppapi/shared_impl/video_decoder_impl.h
rename to ppapi/shared_impl/ppb_video_decoder_shared.h
index 754dd752aa3327ee848f19e4daac450528c3f24c..55b629cc1f92062f792bbdb6d217094619fa8e21 100644
--- a/ppapi/shared_impl/video_decoder_impl.h
+++ b/ppapi/shared_impl/ppb_video_decoder_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_VIDEO_DECODER_IMPL_H_
-#define PPAPI_SHARED_IMPL_VIDEO_DECODER_IMPL_H_
+#ifndef PPAPI_SHARED_IMPL_PPB_VIDEO_DECODER_SHARED_H_
+#define PPAPI_SHARED_IMPL_PPB_VIDEO_DECODER_SHARED_H_
#include <map>
#include <vector>
@@ -24,11 +24,11 @@ namespace ppapi {
// Implements the logic to set and run callbacks for various video decoder
// events. Both the proxy and the renderer implementation share this code.
-class PPAPI_SHARED_EXPORT VideoDecoderImpl
+class PPAPI_SHARED_EXPORT PPB_VideoDecoder_Shared
: NON_EXPORTED_BASE(public thunk::PPB_VideoDecoder_API) {
public:
- VideoDecoderImpl();
- virtual ~VideoDecoderImpl();
+ PPB_VideoDecoder_Shared();
+ virtual ~PPB_VideoDecoder_Shared();
// PPB_VideoDecoder_API implementation.
virtual void Destroy() OVERRIDE;
@@ -69,9 +69,9 @@ class PPAPI_SHARED_EXPORT VideoDecoderImpl
// process only, so gles2_impl_ is NULL in that case.
gpu::gles2::GLES2Implementation* gles2_impl_;
- DISALLOW_COPY_AND_ASSIGN(VideoDecoderImpl);
+ DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Shared);
};
} // namespace ppapi
-#endif // PPAPI_SHARED_IMPL_VIDEO_DECODER_IMPL_H_
+#endif // PPAPI_SHARED_IMPL_PPB_VIDEO_DECODER_SHARED_H_
« no previous file with comments | « ppapi/shared_impl/ppb_url_util_shared.cc ('k') | ppapi/shared_impl/ppb_video_decoder_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698