blob: 7a6e11557419f1a223536ce53674508ddc33387f [file] [log] [blame]
[email protected]fd2594462012-07-24 03:33:561// Copyright (c) 2012 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 CHROME_BROWSER_ANDROID_INTENT_HELPER_H_
6#define CHROME_BROWSER_ANDROID_INTENT_HELPER_H_
7
8#include <jni.h>
9
[email protected]e7463412013-06-10 22:53:4610#include "base/strings/string16.h"
[email protected]fd2594462012-07-24 03:33:5611
12namespace chrome {
13namespace android {
14
15// Triggers a send email intent.
[email protected]96920152013-12-04 21:00:1616void SendEmail(const base::string16& data_email,
17 const base::string16& data_subject,
18 const base::string16& data_body,
19 const base::string16& data_chooser_title,
20 const base::string16& data_file_to_attach);
[email protected]fd2594462012-07-24 03:33:5621
lgarron82d703d2014-11-07 20:18:4322// Triggers an intent to open the date and time settings.
23void OpenDateAndTimeSettings();
24
[email protected]fd2594462012-07-24 03:33:5625} // namespace android
26} // namespace chrome
27
28#endif // CHROME_BROWSER_ANDROID_INTENT_HELPER_H_