OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_SHOW_MAIL_COMPOSER_UTIL_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_SHOW_MAIL_COMPOSER_UTIL_H_ |
| 7 |
| 8 #include "base/files/file_path.h" |
| 9 #include "base/strings/string16.h" |
| 10 |
| 11 // Shows the mail composer UI with the specified parameters. |
| 12 void ShowMailComposer(const base::string16& to_recipient, |
| 13 const base::string16& subject, |
| 14 const base::string16& body, |
| 15 const base::string16& title, |
| 16 const base::FilePath& text_file_to_attach, |
| 17 int email_not_configured_alert_title_id, |
| 18 int email_not_configured_alert_message_id); |
| 19 |
| 20 #endif // IOS_CHROME_BROWSER_UI_SHOW_MAIL_COMPOSER_UTIL_H_ |
OLD | NEW |