Index: ppapi/cpp/file_system.h |
diff --git a/ppapi/cpp/file_system.h b/ppapi/cpp/file_system.h |
index 6b67ca3e03edc091bd204114c50ce94ec80f4bea..9baa78e31bf8d21c843a59eeaa2aa5b7c2cd550c 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 reference to a <code>FileSystem</code>. |
+ FileSystem(const FileSystem& other); |
+ |
/// A constructor used when you have received a PP_Resource as a return |
/// value that has already been reference counted. |
/// |