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

Unified Diff: ppapi/cpp/file_system.cc

Issue 14576007: pp::FileSystem: add copy constrctor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
« no previous file with comments | « ppapi/cpp/file_system.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/file_system.cc
diff --git a/ppapi/cpp/file_system.cc b/ppapi/cpp/file_system.cc
index de14c369f94d794b8ddfda86c2bfd069c5ca9ba8..f993fdaa892459a036ff94192b5fd5460373ba08 100644
--- a/ppapi/cpp/file_system.cc
+++ b/ppapi/cpp/file_system.cc
@@ -25,6 +25,9 @@ template <> const char* interface_name<PPB_FileSystem_1_0>() {
FileSystem::FileSystem() {
}
+FileSystem::FileSystem(const FileSystem& other) : Resource(other) {
+}
+
FileSystem::FileSystem(PassRef, PP_Resource resource)
: Resource(PASS_REF, resource) {
}
« no previous file with comments | « ppapi/cpp/file_system.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698