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

Unified Diff: ppapi/cpp/private/flash_drm.h

Issue 15491006: Rename PPB_Flash_DeviceID interface to PPB_Flash_DRM (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months 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
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_

Powered by Google App Engine
This is Rietveld 408576698