Index: ppapi/cpp/private/flash_drm.h |
diff --git a/ppapi/cpp/private/flash_device_id.h b/ppapi/cpp/private/flash_drm.h |
similarity index 66% |
rename from ppapi/cpp/private/flash_device_id.h |
rename to ppapi/cpp/private/flash_drm.h |
index 33c5e55652f17f1dfa6c93327f955d4d4913a759..4d7d7426be9ebd2d8588d9448dd964c544a450bf 100644 |
--- a/ppapi/cpp/private/flash_device_id.h |
+++ b/ppapi/cpp/private/flash_drm.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_CPP_PRIVATE_FLASH_DEVICE_ID_H_ |
-#define PPAPI_CPP_PRIVATE_FLASH_DEVICE_ID_H_ |
+#ifndef PPAPI_CPP_PRIVATE_FLASH_DRM_H_ |
+#define PPAPI_CPP_PRIVATE_FLASH_DRM_H_ |
#include "ppapi/cpp/completion_callback.h" |
#include "ppapi/cpp/resource.h" |
@@ -11,10 +11,10 @@ |
namespace pp { |
namespace flash { |
-class DeviceID : public Resource { |
+class DRM : public Resource { |
public: |
- DeviceID(); |
- DeviceID(const InstanceHandle& instance); |
+ DRM(); |
+ DRM(const InstanceHandle& instance); |
yzshen1
2013/05/21 06:32:31
explicit?
raymes
2013/05/21 16:32:51
Done.
|
// On success, returns a string var. |
int32_t GetDeviceID(const CompletionCallbackWithOutput<Var>& callback); |
@@ -23,4 +23,4 @@ class DeviceID : public Resource { |
} // namespace flash |
} // namespace pp |
-#endif // PPAPI_CPP_PRIVATE_FLASH_DEVICE_ID_H_ |
+#endif // PPAPI_CPP_PRIVATE_FLASH_DRM_H_ |