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

Unified Diff: ppapi/cpp/private/ext_crx_file_system_private.h

Issue 14188019: CRX FileSystem Pepper private API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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/private/ext_crx_file_system_private.h
diff --git a/ppapi/cpp/private/ext_crx_file_system_private.h b/ppapi/cpp/private/ext_crx_file_system_private.h
new file mode 100644
index 0000000000000000000000000000000000000000..2b91e5b601bc394440f0878877bd75dbe28d2e54
--- /dev/null
+++ b/ppapi/cpp/private/ext_crx_file_system_private.h
@@ -0,0 +1,28 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef PPAPI_CPP_PRIVATE_EXTENSION_CRX_FILE_SYSTEM_PRIVATE_H_
+#define PPAPI_CPP_PRIVATE_EXTENSION_CRX_FILE_SYSTEM_PRIVATE_H_
+
+#include "ppapi/c/pp_instance.h"
+#include "ppapi/cpp/instance_handle.h"
+#include "ppapi/cpp/resource.h"
+
+namespace pp {
+
+class CompletionCallback;
+
+class ExtCrxFileSystemPrivate : public Resource {
+ public:
+ ExtCrxFileSystemPrivate();
+ ExtCrxFileSystemPrivate(const InstanceHandle& instance);
teravest 2013/04/18 16:10:38 explicit
victorhsieh 2013/04/18 19:28:38 Done.
+ ExtCrxFileSystemPrivate(const ExtCrxFileSystemPrivate& other);
teravest 2013/04/18 16:10:38 explicit
victorhsieh 2013/04/18 19:28:38 Done.
+ virtual ~ExtCrxFileSystemPrivate();
+
+ int32_t Open(const CompletionCallback& cc);
teravest 2013/04/18 16:10:38 It looks like this can probably be const?
victorhsieh 2013/04/18 19:28:38 For the current implementation, yes. But I'd safe
+};
+
+} // namespace pp
+
+#endif // PPAPI_CPP_PRIVATE_EXTENSION_CRX_FILE_SYSTEM_PRIVATE_H_

Powered by Google App Engine
This is Rietveld 408576698