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 782c6c8fb36d59f43d62d1dc7a079dadd69bf31c..124003f910f97c9b9f90d2afdeac389c8a3e678d 100644 |
--- a/content/browser/web_contents/web_contents_android.cc |
+++ b/content/browser/web_contents/web_contents_android.cc |
@@ -645,6 +645,11 @@ void WebContentsAndroid::GetContentBitmap( |
result_callback); |
} |
+void WebContentsAndroid::OnContextMenuClosed(JNIEnv* env, jobject obj) { |
+ static_cast<WebContentsImpl*>(web_contents_) |
+ ->NotifyContextMenuClosed(CustomContextMenuContext()); |
+} |
+ |
void WebContentsAndroid::OnFinishGetContentBitmap( |
ScopedJavaGlobalRef<jobject>* obj, |
ScopedJavaGlobalRef<jobject>* callback, |
@@ -660,4 +665,5 @@ void WebContentsAndroid::OnFinishGetContentBitmap( |
java_bitmap.obj(), |
response); |
} |
+ |
} // namespace content |