| Index: content/browser/web_contents/web_contents_android.cc
|
| diff --git a/content/browser/web_contents/web_contents_android.cc b/content/browser/web_contents/web_contents_android.cc
|
| index 48021ca24b38222562b0cf7ebb2556ea48fda846..099e62db1b7320f35352c2a4eca7f1662d7567a7 100644
|
| --- a/content/browser/web_contents/web_contents_android.cc
|
| +++ b/content/browser/web_contents/web_contents_android.cc
|
| @@ -244,6 +244,26 @@ void WebContentsAndroid::Stop(JNIEnv* env, jobject obj) {
|
| web_contents_->Stop();
|
| }
|
|
|
| +void WebContentsAndroid::Cut(JNIEnv* env, jobject obj) {
|
| + web_contents_->Cut();
|
| +}
|
| +
|
| +void WebContentsAndroid::Copy(JNIEnv* env, jobject obj) {
|
| + web_contents_->Copy();
|
| +}
|
| +
|
| +void WebContentsAndroid::Paste(JNIEnv* env, jobject obj) {
|
| + web_contents_->Paste();
|
| +}
|
| +
|
| +void WebContentsAndroid::SelectAll(JNIEnv* env, jobject obj) {
|
| + web_contents_->SelectAll();
|
| +}
|
| +
|
| +void WebContentsAndroid::Unselect(JNIEnv* env, jobject obj) {
|
| + web_contents_->Unselect();
|
| +}
|
| +
|
| void WebContentsAndroid::InsertCSS(
|
| JNIEnv* env, jobject jobj, jstring jcss) {
|
| web_contents_->InsertCSS(base::android::ConvertJavaStringToUTF8(env, jcss));
|
|
|