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

Unified Diff: ppapi/cpp/trusted/file_chooser_trusted.h

Issue 8275013: Pepper: Add a C++ wrapper for the trusted file chooser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update copyright Created 9 years, 2 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/dev/file_chooser_dev.h ('k') | ppapi/cpp/trusted/file_chooser_trusted.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/trusted/file_chooser_trusted.h
diff --git a/ppapi/cpp/trusted/file_chooser_trusted.h b/ppapi/cpp/trusted/file_chooser_trusted.h
new file mode 100644
index 0000000000000000000000000000000000000000..a0227ef030812bad69be86e82401712506feed67
--- /dev/null
+++ b/ppapi/cpp/trusted/file_chooser_trusted.h
@@ -0,0 +1,38 @@
+// Copyright (c) 2011 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_TRUSTED_FILE_CHOOSER_TRUSTED_H_
+#define PPAPI_CPP_TRUSTED_FILE_CHOOSER_TRUSTED_H_
+
+#include <string>
+
+#include "ppapi/cpp/dev/file_chooser_dev.h"
+
+namespace pp {
+
+class FileChooser_Trusted : public FileChooser_Dev {
+ public:
+ /// Creates an is_null() FileChooser_Trusted object.
+ FileChooser_Trusted();
+
+ FileChooser_Trusted(const Instance* instance,
+ PP_FileChooserMode_Dev mode,
+ const Var& accept_mime_types,
+ bool save_as,
+ const std::string& suggested_file_name);
+
+ FileChooser_Trusted(const FileChooser_Trusted& other);
+
+ // Overrides of method in superclass. This shows without requiring a user
+ // gesture (and can also show save dialogs).
+ virtual int32_t Show(const CompletionCallback& cc);
+
+ private:
+ const bool save_as_;
+ const std::string suggested_file_name_;
+};
+
+} // namespace pp
+
+#endif // PPAPI_CPP_TRUSTED_FILE_CHOOSER_TRUSTED_H_
« no previous file with comments | « ppapi/cpp/dev/file_chooser_dev.h ('k') | ppapi/cpp/trusted/file_chooser_trusted.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698