summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/trusted/file_chooser_trusted.h
blob: cdb70b0be68dec4f9ca95b87c2de8eee38779330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright (c) 2012 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 InstanceHandle& instance,
                      PP_FileChooserMode_Dev mode,
                      const Var& accept_types,
                      bool save_as,
                      const std::string& suggested_file_name);

  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 CompletionCallbackWithOutput< std::vector<FileRef> >& callback);

 private:
  bool save_as_;
  std::string suggested_file_name_;
};

}  // namespace pp

#endif  // PPAPI_CPP_TRUSTED_FILE_CHOOSER_TRUSTED_H_