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

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

Issue 9187070: PPAPI: Implement operator= for FileChooser_Trusted. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 | « no previous file | 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
index a0227ef030812bad69be86e82401712506feed67..352ac12fb28a7e861f7608ebd68bbe505a4c6d76 100644
--- a/ppapi/cpp/trusted/file_chooser_trusted.h
+++ b/ppapi/cpp/trusted/file_chooser_trusted.h
@@ -24,13 +24,15 @@ class FileChooser_Trusted : public FileChooser_Dev {
FileChooser_Trusted(const FileChooser_Trusted& other);
+ FileChooser_Trusted& operator=(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_;
+ bool save_as_;
+ std::string suggested_file_name_;
};
} // namespace pp
« no previous file with comments | « no previous file | ppapi/cpp/trusted/file_chooser_trusted.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698