Index: ppapi/cpp/file_system.h |
diff --git a/ppapi/cpp/file_system.h b/ppapi/cpp/file_system.h |
index 6b67ca3e03edc091bd204114c50ce94ec80f4bea..2ca912a6df86e743faceebb46f74942788a79ed6 100644 |
--- a/ppapi/cpp/file_system.h |
+++ b/ppapi/cpp/file_system.h |
@@ -28,6 +28,11 @@ class FileSystem : public Resource { |
/// use it. |
FileSystem(); |
+ /// The copy constructor for <code>FileSystem</code>. |
+ /// |
+ /// @param[in] other A pointer to a <code>FileSystem</code>. |
yzshen1
2013/05/08 23:25:42
nit: The parameter is not a pointer.
victorhsieh
2013/05/08 23:35:53
Done. Also fixed FileIO.
|
+ FileSystem(const FileSystem& other); |
+ |
/// A constructor used when you have received a PP_Resource as a return |
/// value that has already been reference counted. |
/// |