| 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..39a45fff95fc7818e1c1c97f1a68267fff30fd00 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
|
|
|