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

Unified Diff: ppapi/cpp/directory_entry.h

Issue 14419003: PPAPI: Move PPB_DirectoryReader_Dev to stable (won't commit) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/directory_entry.h
diff --git a/ppapi/cpp/dev/directory_entry_dev.h b/ppapi/cpp/directory_entry.h
similarity index 56%
rename from ppapi/cpp/dev/directory_entry_dev.h
rename to ppapi/cpp/directory_entry.h
index 9866213cb7948e7c5d09b145cf6c9234cd7a4310..2ee87570a7f3898c5412b787554d36102f3b87ab 100644
--- a/ppapi/cpp/dev/directory_entry_dev.h
+++ b/ppapi/cpp/directory_entry.h
@@ -2,23 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_CPP_DEV_DIRECTORY_ENTRY_DEV_H_
-#define PPAPI_CPP_DEV_DIRECTORY_ENTRY_DEV_H_
+#ifndef PPAPI_CPP_DIRECTORY_ENTRY_H_
+#define PPAPI_CPP_DIRECTORY_ENTRY_H_
-#include "ppapi/c/dev/ppb_directory_reader_dev.h"
+#include "ppapi/c/ppb_directory_reader.h"
#include "ppapi/cpp/file_ref.h"
namespace pp {
-class DirectoryEntry_Dev {
+class DirectoryEntry {
dmichael (off chromium) 2013/04/23 16:08:59 Please add some documentation for the class and co
nhiroki 2013/04/24 02:01:45 Done.
public:
- DirectoryEntry_Dev();
- DirectoryEntry_Dev(PassRef, const PP_DirectoryEntry_Dev& data);
- DirectoryEntry_Dev(const DirectoryEntry_Dev& other);
+ DirectoryEntry();
+ DirectoryEntry(PassRef, const PP_DirectoryEntry& data);
+ DirectoryEntry(const DirectoryEntry& other);
- ~DirectoryEntry_Dev();
+ ~DirectoryEntry();
- DirectoryEntry_Dev& operator=(const DirectoryEntry_Dev& other);
+ DirectoryEntry& operator=(const DirectoryEntry& other);
// Returns true if the DirectoryEntry is invalid or uninitialized.
dmichael (off chromium) 2013/04/23 16:08:59 The comments here should be in doxygen-style (thre
nhiroki 2013/04/24 02:01:45 Done.
bool is_null() const { return !data_.file_ref; }
@@ -30,9 +30,9 @@ class DirectoryEntry_Dev {
PP_FileType file_type() const { return data_.file_type; }
private:
- PP_DirectoryEntry_Dev data_;
+ PP_DirectoryEntry data_;
};
} // namespace pp
-#endif // PPAPI_CPP_DEV_DIRECTORY_ENTRY_DEV_H_
+#endif // PPAPI_CPP_DIRECTORY_ENTRY_H_

Powered by Google App Engine
This is Rietveld 408576698