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

Unified Diff: ppapi/cpp/output_traits.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: review fix 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
« no previous file with comments | « ppapi/cpp/directory_reader.cc ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/output_traits.h
diff --git a/ppapi/cpp/output_traits.h b/ppapi/cpp/output_traits.h
index 889c6128098ebb183a6a65f21c092ffab4a96326..3b0488128dc79bbceb9d031ca6cef1581818c645 100644
--- a/ppapi/cpp/output_traits.h
+++ b/ppapi/cpp/output_traits.h
@@ -9,7 +9,7 @@
#include "ppapi/c/pp_resource.h"
#include "ppapi/cpp/array_output.h"
-#include "ppapi/cpp/dev/directory_entry_dev.h"
+#include "ppapi/cpp/directory_entry.h"
#include "ppapi/cpp/extensions/ext_output_traits.h"
#include "ppapi/cpp/resource.h"
@@ -246,10 +246,10 @@ struct CallbackOutputTraits< std::vector<pp::Var> > {
};
// A specialization of CallbackOutputTraits to provide the callback system the
-// information on how to handle vectors of pp::DirectoryEntry_Dev. This converts
-// PP_DirectoryEntry_Dev to pp::DirectoryEntry_Dev when passing to the plugin.
+// information on how to handle vectors of pp::DirectoryEntry. This converts
+// PP_DirectoryEntry to pp::DirectoryEntry when passing to the plugin.
template<>
-struct CallbackOutputTraits< std::vector<pp::DirectoryEntry_Dev> > {
+struct CallbackOutputTraits< std::vector<pp::DirectoryEntry> > {
typedef PP_ArrayOutput APIArgType;
typedef DirectoryEntryArrayOutputAdapterWithStorage StorageType;
@@ -257,7 +257,7 @@ struct CallbackOutputTraits< std::vector<pp::DirectoryEntry_Dev> > {
return t.pp_array_output();
}
- static inline std::vector<pp::DirectoryEntry_Dev>& StorageToPluginArg(
+ static inline std::vector<pp::DirectoryEntry>& StorageToPluginArg(
StorageType& t) {
return t.output();
}
« no previous file with comments | « ppapi/cpp/directory_reader.cc ('k') | ppapi/native_client/src/untrusted/pnacl_irt_shim/pnacl_shim.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698