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

Unified Diff: ppapi/shared_impl/ppb_input_event_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_image_data_shared.cc ('k') | ppapi/shared_impl/ppb_input_event_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/shared_impl/ppb_input_event_shared.h
diff --git a/ppapi/shared_impl/input_event_impl.h b/ppapi/shared_impl/ppb_input_event_shared.h
similarity index 83%
rename from ppapi/shared_impl/input_event_impl.h
rename to ppapi/shared_impl/ppb_input_event_shared.h
index 094eb8c5d9aff76a6992dc87c9ea41dd633a769f..1a297506ce21ea2a117dae81d22f4a5d0a36ddbb 100644
--- a/ppapi/shared_impl/input_event_impl.h
+++ b/ppapi/shared_impl/ppb_input_event_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_INPUT_EVENT_IMPL_H_
-#define PPAPI_SHARED_IMPL_INPUT_EVENT_IMPL_H_
+#ifndef PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_
+#define PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_
#include <string>
#include <vector>
@@ -51,7 +51,7 @@ struct PPAPI_SHARED_EXPORT InputEventData {
// This simple class implements the PPB_InputEvent_API in terms of the
// shared InputEventData structure
-class PPAPI_SHARED_EXPORT InputEventImpl
+class PPAPI_SHARED_EXPORT PPB_InputEvent_Shared
: public Resource,
public thunk::PPB_InputEvent_API {
public:
@@ -60,12 +60,12 @@ class PPAPI_SHARED_EXPORT InputEventImpl
// The dummy arguments control which version of Resource's constructor is
// called for this base class.
- InputEventImpl(const InitAsImpl&,
- PP_Instance instance,
- const InputEventData& data);
- InputEventImpl(const InitAsProxy&,
- PP_Instance instance,
- const InputEventData& data);
+ PPB_InputEvent_Shared(const InitAsImpl&,
+ PP_Instance instance,
+ const InputEventData& data);
+ PPB_InputEvent_Shared(const InitAsProxy&,
+ PP_Instance instance,
+ const InputEventData& data);
// Resource overrides.
virtual PPB_InputEvent_API* AsPPB_InputEvent_API() OVERRIDE;
@@ -92,9 +92,9 @@ class PPAPI_SHARED_EXPORT InputEventImpl
private:
InputEventData data_;
- DISALLOW_IMPLICIT_CONSTRUCTORS(InputEventImpl);
+ DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_InputEvent_Shared);
};
} // namespace ppapi
-#endif // PPAPI_SHARED_IMPL_INPUT_EVENT_IMPL_H_
+#endif // PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_
« no previous file with comments | « ppapi/shared_impl/ppb_image_data_shared.cc ('k') | ppapi/shared_impl/ppb_input_event_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698